Touhou/include/engine.h

11 lines
126 B
C
Raw Normal View History

2020-06-01 19:03:13 +02:00
#ifndef _ENGINE_H
#define _ENGINE_H
2020-10-24 10:54:54 +02:00
#include <stdint.h>
2020-06-01 19:03:13 +02:00
2020-10-24 10:54:54 +02:00
void engine(void);
void physics(void);
void graphics(void);
2020-06-01 19:03:13 +02:00
#endif