Files
OpenFrontIO/src/core/game/Ping.ts
T

9 lines
167 B
TypeScript

import { TileRef } from "./GameMap";
export type PingType = "attack" | "retreat" | "defend" | "watchOut";
export type Ping = {
type: PingType;
tile: TileRef;
};