PKHeX/PKHeX.Core/Saves/Substructures/Gen8/ValueBlocks/TextSpeedOption.cs
Kurt 70e7c01896 Add more block-key settings
Co-Authored-By: Matt <sora10pls@users.noreply.github.com>
2020-04-16 13:37:48 -07:00

11 lines
181 B
C#

namespace PKHeX.Core
{
public enum TextSpeedOption : uint
{
Slow = 0,
Normal = 1,
Fast = 2,
Instant = 3, // Any other value, really.
}
}