2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

20 wiersze
372 B

  1. #ifndef IZ_APP_H
  2. #define IZ_APP_H
  3. #include <signal.h>
  4. #include <stdbool.h>
  5. #include "../common/IZ_common.h"
  6. #include "../net/IZ_net_server.h"
  7. #include "../log/IZ_log.h"
  8. #include "db/IZ_repo.h"
  9. #include "IZ_app_config.h"
  10. typedef struct {
  11. IZ_NetServerState net_state;
  12. IZ_RepoState repo_state;
  13. } IZ_App;
  14. IZ_ProcedureResult IZ_AppRun(IZ_App*, u8, const char*[]);
  15. #endif