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.
 
 
 
 
 
 

17 lines
311 B

  1. #ifndef IZ_SUBSYSTEM_H
  2. #define IZ_SUBSYSTEM_H
  3. #include "../common/IZ_common.h"
  4. #include "../net/IZ_net_client.h"
  5. #include "input/IZ_input.h"
  6. struct IZ_App;
  7. u64 IZ_AppGetTicks(struct IZ_App*);
  8. IZ_NetClientState* IZ_AppGetNetState(struct IZ_App*);
  9. IZ_InputState* IZ_AppGetInputState(struct IZ_App*);
  10. #endif