Starter project for SDL2.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
184 B

  1. #ifndef IZ_COMMON_H
  2. #define IZ_COMMON_H
  3. #include <stdint.h>
  4. #define CONTROLS 16
  5. #define PLAYERS 1
  6. static const char* APP_NAME = "SDL2";
  7. typedef uint8_t IZ_ProcedureResult;
  8. #endif