2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

21 行
411 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_intercept.h"
  8. #include "../stdinc/IZ_string.h"
  9. #include "db/IZ_repo.h"
  10. #include "IZ_app_config.h"
  11. typedef struct {
  12. IZ_NetServerState net_state;
  13. IZ_RepoState repo_state;
  14. } IZ_App;
  15. IZ_ProcedureResult IZ_AppRun(IZ_App*, u8, const char*[]);
  16. #endif