CocosCreator_ECS/assets/Script/ECS/components/ComBeAttacked.ts

7 lines
212 B
TypeScript
Raw Normal View History

2022-03-22 07:35:41 +00:00
import { ComType, EntityIndex } from "../lib/Const";
2022-03-21 09:27:37 +00:00
import { ECSComponent } from "../lib/ECSComponent";
@ECSComponent(ComType.ComBeAttacked)
export class ComBeAttacked {
2022-03-22 07:35:41 +00:00
public attacker: EntityIndex = -1;
2022-03-21 09:27:37 +00:00
}