mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-27 04:54:36 +00:00
10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
import { Game } from "../../../core/game/Game";
|
|
|
|
export interface Layer {
|
|
init?();
|
|
tick?();
|
|
renderLayer?(context: CanvasRenderingContext2D);
|
|
shouldTransform?(): boolean;
|
|
redraw?(): void;
|
|
}
|