using Gamesmiths.Forge.Attributes; namespace Movementtests.scenes.player_controller.scripts; public class PlayerAttributeSet : AttributeSet { public EntityAttribute Mana { get; } public PlayerAttributeSet() { Mana = InitializeAttribute(nameof(Mana), 100, 0, 100); } }