mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-02 10:55:18 -05:00
14 lines
215 B
C#
14 lines
215 B
C#
using System;
|
|
|
|
namespace pkNX.Structures
|
|
{
|
|
[Flags]
|
|
public enum BattlePocket : byte
|
|
{
|
|
None,
|
|
Ball = 1 << 0,
|
|
Boosts = 1 << 1,
|
|
Restore = 1 << 2,
|
|
Misc = 1 << 3,
|
|
}
|
|
} |