docs: 更新 containers 和 threading 模块文档

- containers: 更新 string 类的多个方法文档
- threading: 更新 mutex 和 task-group 方法文档
This commit is contained in:
2026-03-26 01:59:14 +08:00
parent 8df04c120f
commit 5c3566774b
42 changed files with 714 additions and 96 deletions

View File

@@ -66,6 +66,8 @@ public:
void Save(const std::string& filePath);
void Load(const std::string& filePath);
std::string SerializeToString() const;
void DeserializeFromString(const std::string& data);
Core::Event<GameObject*>& OnGameObjectCreated() { return m_onGameObjectCreated; }
Core::Event<GameObject*>& OnGameObjectDestroyed() { return m_onGameObjectDestroyed; }
@@ -112,4 +114,4 @@ private:
};
} // namespace Components
} // namespace XCEngine
} // namespace XCEngine