Starter project for SDL2.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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