mirror of
https://gitee.com/dgflash/oops-framework.git
synced 2026-06-30 07:24:30 +08:00
16 lines
375 B
TypeScript
16 lines
375 B
TypeScript
import { ecs } from "../../core/libs/ECS";
|
|
import { DemoBllLoginSystem } from "./DemoBllLoginSystem";
|
|
|
|
/*
|
|
* @Author: dgflash
|
|
* @Date: 2021-11-11 18:14:52
|
|
* @LastEditors: dgflash
|
|
* @LastEditTime: 2021-11-12 10:50:28
|
|
*/
|
|
export class EcsDemoSystem extends ecs.System {
|
|
constructor() {
|
|
super();
|
|
this.add(new DemoBllLoginSystem());
|
|
}
|
|
}
|