2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

23 行
325 B

  1. #ifndef IZ_WINDOWS_H
  2. #define IZ_WINDOWS_H
  3. #if defined IZ_WINDOWS
  4. #include <io.h>
  5. #include <SDL_syswm.h>
  6. #define _isatty isatty
  7. #define _fileno fileno
  8. #endif
  9. #if defined IZ_UNIX
  10. typedef size_t rsize_t;
  11. typedef int errno_t;
  12. #endif
  13. #if defined IZ_MACOS
  14. #include <unistd.h>
  15. typedef int errno_t;
  16. #endif
  17. #endif //IZ_WINDOWS_H