2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

23 righe
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