- 新增游戏引擎核心模块,包括初始化和运行逻辑 - 实现基本的渲染功能,支持控制台输出 - 添加物理引擎基础,包括碰撞检测 - 集成日志系统,用于调试和信息输出 - 创建窗口和输入管理模块
9 lines
137 B
C
9 lines
137 B
C
#ifndef __GE_PHYSICS_H__
|
|
#define __GE_PHYSICS_H__
|
|
|
|
#include <ge_common.h>
|
|
|
|
typedef ge_u8_t ge_phy_layers_t;
|
|
|
|
#endif // __GE_PHYSICS_H__
|