7 lines
212 B
TypeScript
Raw Normal View History

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