20 lines
452 B
Markdown
20 lines
452 B
Markdown
---
|
||
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()
|
||
```
|
||
|
||
|