PKHeX/PKHeX.Core/Game/ComboItem.cs
Kurt 3f38b123a3 Refactoring
mostly renaming things, includes a little bit of added sugar and
splitting methods to simplify the codebase.

all methods are now PascalCase
2017-06-17 18:37:19 -07:00

8 lines
148 B
C#

namespace PKHeX.Core
{
public struct ComboItem
{
public string Text { get; set; }
public int Value { get; set; }
}
}