mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-12 06:37:20 -05:00
11 lines
181 B
C#
11 lines
181 B
C#
namespace PKHeX.Core
|
|
{
|
|
public enum TextSpeedOption : uint
|
|
{
|
|
Slow = 0,
|
|
Normal = 1,
|
|
Fast = 2,
|
|
Instant = 3, // Any other value, really.
|
|
}
|
|
}
|