docs: update resources API docs

This commit is contained in:
2026-03-20 02:35:35 +08:00
parent fd792b7df1
commit ea756c0177
314 changed files with 9439 additions and 1360 deletions

View File

@@ -0,0 +1,29 @@
# MeshLoader::~MeshLoader
## 方法签名
```cpp
virtual ~MeshLoader() override;
```
## 详细描述
析构函数,用于销毁 `MeshLoader` 对象。该析构函数不执行任何特殊清理操作。
## 参数
## 示例
```cpp
#include "Resources/MeshLoader.h"
using namespace XCEngine::Resources;
{
MeshLoader loader;
// 使用 loader...
}
// loader 在此自动销毁
```