mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-28 16:54:15 +00:00
9 lines
167 B
TypeScript
9 lines
167 B
TypeScript
import { TileRef } from "./GameMap";
|
|
|
|
export type PingType = "attack" | "retreat" | "defend" | "watchOut";
|
|
|
|
export type Ping = {
|
|
type: PingType;
|
|
tile: TileRef;
|
|
};
|