Starter project for SDL2.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627
  1. #ifndef IZ_ACTION_H
  2. #define IZ_ACTION_H
  3. #include "IZ_common.h"
  4. typedef uint16_t IZ_Action;
  5. static const char* ACTION_NAMES[CONTROLS] = {
  6. "Right",
  7. "Down",
  8. "Left",
  9. "Up",
  10. "Affirm",
  11. "Negate",
  12. "Action0",
  13. "Action1",
  14. "Action2",
  15. "Action3",
  16. "Action4",
  17. "Action5",
  18. "Action6",
  19. "Action7",
  20. "Action8",
  21. "Action9",
  22. };
  23. #endif