mirror of
https://github.com/kwsch/pkNX.git
synced 2026-04-21 17:17:54 -05:00
File scoped namespaces for all lib projects netstandard2.0 => net6; now uniform. bye netframework!
18 lines
284 B
C#
18 lines
284 B
C#
using System;
|
|
|
|
namespace pkNX.Structures;
|
|
|
|
[Flags]
|
|
public enum ItemFlags1 : byte
|
|
{
|
|
None,
|
|
RestorePP = 1 << 0,
|
|
RestorePPAll = 1 << 1,
|
|
RestoreHP = 1 << 2,
|
|
AddEVHP = 1 << 3,
|
|
AddEVAtk = 1 << 4,
|
|
AddEVDef = 1 << 5,
|
|
AddEVSpe = 1 << 6,
|
|
AddEVSpA = 1 << 7,
|
|
}
|