Files
HexTowerDefense3/src/app/components/game/command.ts
2025-05-10 11:33:42 +02:00

6 lines
74 B
TypeScript

export interface Command {
step: number;
type: string;
payload: any;
}