18 lines
294 B
C#
18 lines
294 B
C#
using RPGLibrary.Attribute;
|
|
|
|
namespace RPGLibrary.Implementation
|
|
{
|
|
public class HP : PoolAttribute
|
|
{
|
|
public HP(double current, double maximum)
|
|
: base(current, maximum)
|
|
{
|
|
}
|
|
|
|
public override string? ToString()
|
|
{
|
|
return $"HP: ({Value}/{Maximum})";
|
|
}
|
|
}
|
|
|
|
} |