变量改名

This commit is contained in:
2025-06-04 00:18:32 +08:00
parent 520b7cae9e
commit 118ee6e570
2 changed files with 11 additions and 11 deletions

View File

@@ -37,7 +37,7 @@ namespace hgl::graph
};//class Scene
bool RegistryScene(Scene *sw); ///<注册场景
bool UnregistryScene(const U8String &world_name); ///<注销场景
bool UnregistryScene(const U8String &scene_name); ///<注销场景
inline bool UnregistryScene(Scene *sw) ///<注销场景
{
@@ -46,5 +46,5 @@ namespace hgl::graph
return UnregistryScene(sw->GetSceneName());
}
Scene *GetScene(const U8String &world_name); ///<获取指定名称的场景
Scene *GetScene(const U8String &scene_name); ///<获取指定名称的场景
}//namespace hgl::graph