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.
 
 
 
 
 
 

21 lines
331 B

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