Starter project for SDL2.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

14 rindas
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