mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-26 14:46:20 -05:00
11 lines
166 B
C#
11 lines
166 B
C#
namespace pkNX.Structures
|
|
{
|
|
public enum TypeEffectiveness : byte
|
|
{
|
|
Immune = 0,
|
|
NotVery = 2,
|
|
Normal = 4,
|
|
Super = 8,
|
|
}
|
|
}
|