skeleton of level system

This commit is contained in:
Haze Weathers 2025-03-03 04:54:30 -05:00
parent 9fc559ffd0
commit 6309bce63f
11 changed files with 103 additions and 5 deletions

4
autoloads/levels.gd Normal file
View file

@ -0,0 +1,4 @@
extends Node
@export var level_sets: Array[LevelSet] = []

6
autoloads/levels.tscn Normal file
View file

@ -0,0 +1,6 @@
[gd_scene load_steps=2 format=3 uid="uid://dbqsgks307bto"]
[ext_resource type="Script" path="res://autoloads/levels.gd" id="1_b8434"]
[node name="Levels" type="Node"]
script = ExtResource("1_b8434")