mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-09 04:24:36 -05:00
mostly renaming things, includes a little bit of added sugar and splitting methods to simplify the codebase. all methods are now PascalCase
9 lines
148 B
C#
9 lines
148 B
C#
namespace PKHeX.Core
|
|
{
|
|
public struct ComboItem
|
|
{
|
|
public string Text { get; set; }
|
|
public int Value { get; set; }
|
|
}
|
|
}
|