mirror of
https://gitee.com/dgflash/oops-framework.git
synced 2026-05-31 18:59:19 +08:00
16 lines
361 B
TypeScript
16 lines
361 B
TypeScript
/*
|
|
* @Author: dgflash
|
|
* @Date: 2021-08-11 16:41:12
|
|
* @LastEditors: dgflash
|
|
* @LastEditTime: 2022-01-27 11:10:44
|
|
*/
|
|
import { ecs } from "../../../../core/libs/ECS";
|
|
import { MoveToSystem } from "./MoveTo";
|
|
|
|
export class EcsPositionSystem extends ecs.System {
|
|
constructor() {
|
|
super();
|
|
this.add(new MoveToSystem());
|
|
}
|
|
}
|