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.

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