PKHeX/PKHeX.Core/Legality/Structures/MoveSource.cs

24 lines
394 B
C#
Raw Normal View History

2021-10-09 23:25:36 +00:00
namespace PKHeX.Core
{
/// <summary>
/// Indicates the method of learning a move
/// </summary>
public enum MoveSource
{
Unknown,
None,
Relearn,
Initial,
LevelUp,
TMHM,
Tutor,
EggMove,
InheritLevelUp,
Special,
SpecialEgg,
ShedinjaEvo,
Sketch,
Shared,
}
}