2024-02-26 01:54:57 +00:00
|
|
|
#ifndef CROCPARTY_SYS_H
|
|
|
|
#define CROCPARTY_SYS_H
|
|
|
|
|
|
|
|
#include "sys_data.h"
|
|
|
|
#include "sys_graphics.h"
|
2024-02-26 20:42:07 +00:00
|
|
|
#include "fonts/sys_font_small.h"
|
2024-02-26 01:54:57 +00:00
|
|
|
|
2024-02-26 02:38:53 +00:00
|
|
|
/**
|
|
|
|
* Initialize sys.
|
|
|
|
*/
|
|
|
|
void sys_init();
|
|
|
|
|
2024-02-28 05:07:15 +00:00
|
|
|
/**
|
|
|
|
* Update sys -- usually for input state.
|
|
|
|
*/
|
|
|
|
void sys_update();
|
|
|
|
|
2024-02-26 02:38:53 +00:00
|
|
|
/**
|
|
|
|
* Return whether sys was initialized.
|
|
|
|
*/
|
|
|
|
bool sys_get_initialized();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroy sys.
|
|
|
|
*/
|
|
|
|
void sys_destroy();
|
|
|
|
|
2024-02-26 01:54:57 +00:00
|
|
|
#endif // CROCPARTY_SYS_H
|