16 lines
182 B
C
16 lines
182 B
C
//ÓÎÏ·ÒýÇæ
|
|
|
|
#ifndef __GAMEENGINE_H
|
|
#define __GAMEENGINE_H
|
|
|
|
#include "GE_Draw.h"
|
|
#include "GE_Font.h"
|
|
#include "GE_GUI.h"
|
|
|
|
#define FALSE 0
|
|
#define TRUE 1
|
|
|
|
void GE_Init(void);
|
|
|
|
#endif
|