jumpstorm/client/lib/interfaces/Draw.ts
2023-07-19 20:38:24 -07:00

10 lines
182 B
TypeScript

import type { Coord2D, Dimension2D } from "./";
export interface DrawArgs {
center: Coord2D;
dimension: Dimension2D;
tint?: string;
opacity?: number;
rotation?: number;
}