feat:上传mcguide-开发指南部份

This commit is contained in:
Othniel su
2024-12-23 10:57:59 +08:00
parent 7292166c88
commit 0dc59fa4f0
3297 changed files with 63375 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
---
front:
hard: 入门
time: 分钟
---
# <span id="系统简介"></span>系统简介
系统System是我们的核心类用于监听事件使用组件更新等。
获取自定义的System需要继承引擎的系统基类 ClientSystem/ServerSystem.
```python
import client.extraClientApi as clientApi
ClientSystem = clientApi.GetClientSystemCls()
import server.extraServerApi as serverApi
ServerSystem = serverApi.GetServerSystemCls()
```