2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
 
 
 
 
 
 

12 line
147 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. #endif