// Copyright © Gamesmiths Guild. using Godot; using Godot.Collections; namespace Gamesmiths.Forge.Godot.Core; [Tool] public partial class ForgeData : Resource { public const string ForgeDataResourcePath = "res://forge/forge_data.tres"; [Export] public Array RegisteredTags { get; set; } = []; }