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.
 
 
 
 
 
 

19 lines
321 B

  1. #ifndef IZ_APP_H
  2. #define IZ_APP_H
  3. #include <signal.h>
  4. #include <stdbool.h>
  5. #include "net/svc/IZ_wsserver.h"
  6. #include "log/IZ_log.h"
  7. #include "IZ_common.h"
  8. #include "IZ_config.h"
  9. #include "net/IZ_net.h"
  10. typedef struct {
  11. IZ_NetState net_state;
  12. } IZ_App;
  13. IZ_ProcedureResult IZ_AppRun(IZ_App*, u8, const char**);
  14. #endif