mirror of
https://github.com/kwsch/pk3DS.git
synced 2026-08-03 10:09:35 -05:00
expand some enums out, actual numbers return actual numbers for the HealValue so casting directly to byte preserves the value
11 lines
168 B
C#
11 lines
168 B
C#
namespace pk3DS.Core.Structures
|
|
{
|
|
public enum HealValue : byte
|
|
{
|
|
Full = 0xFF,
|
|
Half = 0xFE,
|
|
Quarter = 0xFD,
|
|
None = 0,
|
|
}
|
|
}
|