mirror of
https://gitee.com/dgflash/oops-framework.git
synced 2026-05-22 14:37:06 +08:00
19 lines
473 B
TypeScript
19 lines
473 B
TypeScript
/*
|
|
* @Author: dgflash
|
|
* @Date: 2022-01-24 14:56:01
|
|
* @LastEditors: dgflash
|
|
* @LastEditTime: 2022-01-26 16:45:13
|
|
*/
|
|
import { ecs } from "../../../core/libs/ECS";
|
|
import { RoleChangeJobSystem } from "./RoleChangeJob";
|
|
import { RoleUpgradeSystem } from "./RoleUpgrade";
|
|
|
|
export class EcsRoleSystem extends ecs.System {
|
|
constructor() {
|
|
super();
|
|
|
|
this.add(new RoleChangeJobSystem());
|
|
this.add(new RoleUpgradeSystem());
|
|
}
|
|
}
|