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

16 lines
357 B
TypeScript
Raw Normal View History

2022-03-21 09:27:37 +00:00
import { ComType } from "../lib/Const";
import { ECSComponent } from "../lib/ECSComponent";
@ECSComponent(ComType.ComRoleConfig)
export class ComRoleConfig {
public team: number;
public maxHP: number;
public lastHP: number;
public nowHP: number;
public HPDirty: boolean;
public attack: number;
public moveSpeed: number;
}