2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
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