13 lines
304 B
C#
13 lines
304 B
C#
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);
|
|
}
|
|
} |