crocparty/sys/sys.h

22 lines
290 B
C
Raw Normal View History

2024-02-26 01:54:57 +00:00
#ifndef CROCPARTY_SYS_H
#define CROCPARTY_SYS_H
#include "sys_data.h"
#include "sys_graphics.h"
/**
* Initialize sys.
*/
void sys_init();
/**
* 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