mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-08 13:55:27 -05:00
File scoped namespaces for all lib projects netstandard2.0 => net6; now uniform. bye netframework!
15 lines
310 B
C#
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,
|
|
}
|