Files
netease-bedrock-wiki/mcguide/20-玩法开发/13-模组SDK编程/2-Python脚本开发/4-系统简介.md
2025-08-25 18:36:29 +08:00

20 lines
452 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
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()
```