()
| 24 | @ECSSystem('TestSystem', { updateOrder: 10 }) |
| 25 | class TestSystem extends EntitySystem { |
| 26 | constructor() { |
| 27 | super(Matcher.empty().all(PositionComponent)); |
| 28 | } |
| 29 | |
| 30 | protected override process(entities: readonly import('../../src/ECS/Entity').Entity[]): void { |
| 31 | // 模拟处理逻辑 |