mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
9696da2eb3
Seal ComboItem Reorder methods for easier reading Fix BulkGenerator living dex setting CurrentLevel -- needs to be after species,form as EXPGrowth can vary for forms.
6 lines
229 B
C#
6 lines
229 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Key Value pair for a displayed <see cref="T:System.String" /> and underlying <see cref="T:System.Int32" /> value.
|
|
/// </summary>
|
|
public sealed record ComboItem(string Text, int Value);
|