fix: remove class_name from autoload singletons

PluginManager and LayoutManager had class_name declarations
that shadowed their autoload registrations in project.godot.
This commit is contained in:
Eric Smith 2026-05-21 08:43:57 -04:00
parent f43676e46c
commit 825598f1a9
2 changed files with 0 additions and 2 deletions

View file

@ -1,5 +1,4 @@
extends Node
class_name LayoutManager
## Manages saved dashboard layouts.
##
## Layouts map tile_id -> {col, row, w, h}. The current layout is loaded

View file

@ -1,5 +1,4 @@
extends Node
class_name PluginManager
## Scans res://plugins/ for plugin manifests (plugin.cfg) and provides
## access to tile definitions. Instantiate tiles by tile_id.