mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-13 06:02:36 +00:00
df94afa711
extract some enums to core, use Enum.GetNames to do string fetch make stamp listbox taller clean up Display*ID setters
19 lines
291 B
C#
19 lines
291 B
C#
namespace PKHeX.Core
|
|
{
|
|
public enum BattleStyle7
|
|
{
|
|
Normal,
|
|
Elegant,
|
|
Girlish,
|
|
Reverent,
|
|
Smug,
|
|
LeftHanded,
|
|
Passionate,
|
|
Idol,
|
|
|
|
/// <summary>
|
|
/// USUM Only
|
|
/// </summary>
|
|
Nihilist,
|
|
}
|
|
}
|