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.
 
 
 
 
 
 

18 line
299 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. typedef struct {
  10. IZ_WSServerState server;
  11. } IZ_App;
  12. IZ_ProcedureResult IZ_AppRun(IZ_App*, u8, const char**);
  13. #endif