mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-04 17:59:16 +00:00
f7a888cc57
Closes #4128 I don't want to decipher to manual interactions to the Battle Frontier structures now. Prints were just work values, and fly flags were event flags.
10 lines
171 B
C#
10 lines
171 B
C#
namespace PKHeX.Core;
|
|
|
|
public enum BattleFrontierPrintStatus4
|
|
{
|
|
None = 0,
|
|
FirstReady = 1,
|
|
FirstReceived = 2,
|
|
SecondReady = 3,
|
|
SecondReceived = 4,
|
|
}
|