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