Starter project for SDL2.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
328 B

  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