2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
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.
 
 
 
 
 
 

24 lines
390 B

  1. #ifndef IZ_COMMON_H
  2. #define IZ_COMMON_H
  3. #include <stdint.h>
  4. #include <stdbool.h>
  5. #define PLAYERS (unsigned char) 1
  6. #define APP_NAME "SDL2"
  7. typedef uint8_t u8;
  8. typedef uint16_t u16;
  9. typedef uint32_t u32;
  10. typedef uint64_t u64;
  11. typedef float f32;
  12. typedef double f64;
  13. typedef int8_t i8;
  14. typedef int16_t i16;
  15. typedef int32_t i32;
  16. typedef int64_t i64;
  17. typedef i32 IZ_ProcedureResult;
  18. #endif