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