mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-06 04:45:40 -05:00
File scoped namespaces for all lib projects netstandard2.0 => net6; now uniform. bye netframework!
24 lines
261 B
C#
24 lines
261 B
C#
namespace pkNX.Structures;
|
|
|
|
public enum Types : byte
|
|
{
|
|
Normal,
|
|
Fighting,
|
|
Flying,
|
|
Poison,
|
|
Ground,
|
|
Rock,
|
|
Bug,
|
|
Ghost,
|
|
Steel,
|
|
Fire,
|
|
Water,
|
|
Grass,
|
|
Electric,
|
|
Psychic,
|
|
Ice,
|
|
Dragon,
|
|
Dark,
|
|
Fairy,
|
|
}
|