mirror of
https://github.com/kwsch/PKHeX
synced 2025-01-06 09:38:47 +00:00
3f38b123a3
mostly renaming things, includes a little bit of added sugar and splitting methods to simplify the codebase. all methods are now PascalCase
8 lines
148 B
C#
8 lines
148 B
C#
namespace PKHeX.Core
|
|
{
|
|
public struct ComboItem
|
|
{
|
|
public string Text { get; set; }
|
|
public int Value { get; set; }
|
|
}
|
|
}
|