2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

24 Zeilen
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