fix name collisions

This commit is contained in:
Nitwel 2024-04-09 15:35:33 +02:00
parent 6690b9b195
commit e73db3ee47
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
extends State
const Room = preload("res://content/system/house/room/room.gd")
extends MachineState
const Room = preload ("res://content/system/house/room/room.gd")
var room: Room

View File

@ -1,6 +1,6 @@
extends Node
## Base Class for all states
class_name State
class_name MachineState
var state_machine: StateMachine