Files
HexTowerDefense3/src/app/components/game/sim/actions/ISimAction.ts
2025-05-17 15:55:26 +02:00

6 lines
111 B
TypeScript

import { SimMain } from "../SimMain";
export interface ISimAction {
execute(simMain: SimMain): void;
}