Loads of crap

This commit is contained in:
Dan Baker 2025-06-26 14:46:23 +01:00
parent b5bf7619e6
commit 1dc768ad27
725 changed files with 15096 additions and 191 deletions

13
Config/Globals.gd Normal file
View file

@ -0,0 +1,13 @@
class_name Globals
extends Node
var map_height: int = 200
var map_width: int = 200
var map_data: Array
func _init() -> void:
map_data.resize(map_height)
for y in range(map_height):
map_data[y] = []
map_data[y].resize(map_width)

1
Config/Globals.gd.uid Normal file
View file

@ -0,0 +1 @@
uid://durxtdlwqp4pf