feat(game): 添加基础游戏引擎和渲染模块

- 新增游戏引擎核心模块,包括初始化和运行逻辑
- 实现基本的渲染功能,支持控制台输出
- 添加物理引擎基础,包括碰撞检测
- 集成日志系统,用于调试和信息输出
- 创建窗口和输入管理模块
This commit is contained in:
ZZY
2025-06-24 02:16:01 +08:00
commit 5ce660e3a6
30 changed files with 2056 additions and 0 deletions

12
game_engine/ge_common.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef __GE_COMMON_H__
#define __GE_COMMON_H__
#include <pynic_log/pynic_log.h>
#include <utils/ge_maroc.h>
#include <ge_config.h>
#include <utils/ge_kfifo.h>
#include <utils/ge_static_alloc.h>
#include <utils/ge_vector2i.h>
#endif // __GE_COMMON_H__