using Gamesmiths.Forge.Attributes; namespace Movementtests.forge.attribute_sets; public class CharacterAttributeSet : AttributeSet { public EntityAttribute Health { get; } public CharacterAttributeSet() { Health = InitializeAttribute(nameof(Health), 100, 0, 100); } }