first commit

This commit is contained in:
boybook
2025-03-17 13:24:39 +08:00
commit 9a0334ee84
6410 changed files with 221907 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()
```