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.

13 lines
180 B

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