Files
ZYZ/shared/domain/battleField/gvgBattle.ts

24 lines
563 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { GVGTeamType } from "../../db/GVGTeam";
// 积分点分类统计1-3级积分点代表从小到大
export interface LeagueCityPoint {
// 计分点数
pointCnt1: number;
pointCnt2: number;
pointCnt3: number;
// 击杀守卫数
guardCnt1: number;
// 击杀投石车数
catapultCnt1: number;
}
// 队伍状态
export interface GVGTeamMem extends GVGTeamType {
// 开始移动时间戳
startMoveTime: number;
// 停止移动时间戳
stopMoveTime: number;
// 是否正在移动
isMoving: boolean;
}