mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 00:07:15 +00:00
69cf1eaa9c
adds a bunch of documentation useful for those unfamiliar with the core library
11 lines
285 B
C#
11 lines
285 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Key Value pair for a displayed <see cref="string"/> and underlying <see cref="int"/> value.
|
|
/// </summary>
|
|
public struct ComboItem
|
|
{
|
|
public string Text { get; set; }
|
|
public int Value { get; set; }
|
|
}
|
|
}
|