建立最基础的SceneWorldManager

This commit is contained in:
2025-05-22 01:42:16 +08:00
parent 8a99a331c0
commit 75da8cabef
6 changed files with 68 additions and 17 deletions

View File

@@ -27,7 +27,7 @@ public:
public:
GraphModule * Get(const size_t type_hash) {return GetObjectFromList(module_map,type_hash);} ///<取得指定类型的模块
GraphModule * Get(const size_t type_hash) {return GetObjectFromMap(module_map,type_hash);} ///<取得指定类型的模块
template<typename T>
T * Get() {return((T *)Get(typeid(T).hash_code()));} ///<取得指定类型的模块