feat: 添加任务系统并实现异步资源加载功能

添加任务系统(TaskSystem)支持多线程任务处理和主线程回调
扩展Actor类添加更新监听器功能
新增GameWorld和GameTown场景类
添加多种混合模式(BlendMode)支持
实现异步资源加载界面和流程
This commit is contained in:
2026-04-01 09:02:13 +08:00
parent 31e2c249bb
commit 42e5579cc3
15 changed files with 646 additions and 62 deletions

View File

@@ -0,0 +1,12 @@
#pragma once
#include <frostbite2D/2d/actor.h>
namespace frostbite2D {
class GameTown : public Actor {
public:
GameTown();
~GameTown();
};
} // namespace frostbite2D