using Gamesmiths.Forge.Attributes; namespace Movementtests.scenes.player_controller.components.weapon; public class WeaponAttributeSet : AttributeSet { public EntityAttribute Level { get; } public WeaponAttributeSet() { Level = InitializeAttribute(nameof(Level), 1, 1, 10); } }