pkNX/pkNX.Structures/Misc/Heal.cs
Kurt 2578ba073c Refactoring
File scoped namespaces for all lib projects
netstandard2.0 => net6; now uniform. bye netframework!
2022-10-01 17:08:17 -07:00

15 lines
310 B
C#

namespace pkNX.Structures;
/// <summary>
/// Indicates how much a heal item/move heals.
/// </summary>
/// <remarks>Any other non-enumerated value will be treated as a fixed value heal equal to the value.</remarks>
public enum Heal : byte
{
None = 0,
Quarter = 253,
Half = 254,
Full = 255,
}