Everything is a bit better

This commit is contained in:
2025-10-04 00:27:14 +02:00
parent a960f4e18b
commit 012c3534be
6 changed files with 194 additions and 50 deletions

5
src/types/tiles.ts Normal file
View File

@ -0,0 +1,5 @@
export interface TileState {
formula: string
engineParams: Record<string, number>
effectParams: Record<string, number | boolean | string>
}