Files
RPGLibrary/RPGLibrary.Implementation/Attribute/DefenseAttribute.cs
2023-02-28 19:15:03 -08:00

20 lines
332 B
C#

using RPGLibrary.Abstraction.Attribute;
namespace RPGLibrary.Implementation
{
public class DefenseAttribute : IAttribute
{
public DefenseAttribute(double value)
{
Value = value;
}
public double Value { get; }
public override string? ToString()
{
return $"Defense: {Value}";
}
}
}