2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

21 行
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