Many changes

Handle it
This commit is contained in:
Dan Baker 2025-05-04 09:30:14 +01:00
parent bf09402bc5
commit 214e0aa5e0
366 changed files with 24353 additions and 2096 deletions

14
utility/Globals.gd Normal file
View file

@ -0,0 +1,14 @@
extends Node
class_name GlobalVariables
const TILE_SIZE = 32
const ROOM_WIDTH = 20
const ROOM_HEIGHT = 16
const GRID_WIDTH = 4
const GRID_HEIGHT = 4
const MAP_EMPTY = 0
const MAP_PATH = 1
const MAP_START = 2
const MAP_FINISH = 4
const MAP_UP_CELL = 3