mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-16 08:39:47 -05:00
13 lines
296 B
C#
13 lines
296 B
C#
namespace pkNX.Structures
|
|
{
|
|
#pragma warning disable CA1027 // Mark enums with FlagsAttribute
|
|
public enum TypeEffectiveness : byte
|
|
#pragma warning restore CA1027 // Mark enums with FlagsAttribute
|
|
{
|
|
Immune = 0,
|
|
NotVery = 2,
|
|
Normal = 4,
|
|
Super = 8,
|
|
}
|
|
}
|