Canvas coordinates and elevation captured at the start of a combat turn.

interface CombatantStartLocation {
    elevation: number;
    x: number;
    y: number;
}

Properties

Properties

elevation: number

Elevation (in grid units) at turn start.

x: number

Pixel x-coordinate on the canvas at turn start.

y: number

Pixel y-coordinate on the canvas at turn start.