mirror of
https://github.com/AndrioCelos/TableturfBattleApp.git
synced 2026-04-08 10:05:17 -05:00
10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
interface Placement {
|
|
players: number[],
|
|
spacesAffected: { space: Point, newState: Space, oldState?: Space }[]
|
|
}
|
|
|
|
interface PlacementResults {
|
|
placements: Placement[],
|
|
specialSpacesActivated: Point[]
|
|
}
|