summaryrefslogtreecommitdiff
path: root/src/engine/interfaces/Draw.ts
blob: 78de7ed2e2079e1a9d49be0093e726480bcf1d71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import type { Coord2D, Dimension2D } from "./";

export interface DrawArgs {
  center: Coord2D;
  dimension: Dimension2D;
  tint?: string;
  opacity?: number;
  rotation?: number;
  backgroundText?: {
    text: string;
    font: string;
    fillStyle: string;
    textAlign: CanvasTextAlign;
  };
}