mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 22:10:21 +00:00
d47bb1d297
With the new version of Visual Studio bringing C# 12, we can revise our logic for better readability as well as use new methods/APIs introduced in the .NET 8.0 BCL.
18 lines
233 B
C#
18 lines
233 B
C#
namespace PKHeX.Core;
|
|
|
|
public enum PlayerBattleStyle7
|
|
{
|
|
Normal,
|
|
Elegant,
|
|
Girlish,
|
|
Reverent,
|
|
Smug,
|
|
LeftHanded,
|
|
Passionate,
|
|
Idol,
|
|
|
|
/// <summary>
|
|
/// US/UM Only
|
|
/// </summary>
|
|
Nihilist,
|
|
}
|