Files
cryptonhym-thunder/Code/Resources/ArchetypeDatabase.cs

10 lines
240 B
C#

using Godot;
using Godot.Collections;
namespace CryptonymThunder.Code.Resources;
[GlobalClass]
public partial class ArchetypeDatabase : Resource
{
[Export] public Dictionary<string, EntityArchetype> Archetypes { get; set; } = new();
}