CocosCreator_ECS/assets/Script/ECS/components/ComBeAttacked.ts
2022-03-22 15:35:41 +08:00

7 lines
212 B
TypeScript

import { ComType, EntityIndex } from "../lib/Const";
import { ECSComponent } from "../lib/ECSComponent";
@ECSComponent(ComType.ComBeAttacked)
export class ComBeAttacked {
public attacker: EntityIndex = -1;
}