feat: Add TIME and ERROR variables to global scope in HeightmapGenerator

This commit is contained in:
Marc Emmanuel 2026-01-19 15:52:11 +01:00
parent 4b5e9bfeea
commit 91fe15a532

View file

@ -7,6 +7,8 @@ declare global {
HeightmapGenerator: HeightmapGenerator;
}
var heightmapTemplates: any;
var TIME: boolean;
var ERROR: boolean;
}
type Tool = "Hill" | "Pit" | "Range" | "Trough" | "Strait" | "Mask" | "Invert" | "Add" | "Multiply" | "Smooth";