using Godot; using Godot.Collections; namespace CryptonymThunder.Code.Resources; [GlobalClass] public partial class EntityArchetype : Resource { [Export] public PackedScene Scene { get; set; } [Export] public Array ComponentResources { get; set; } = []; }