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