PKHeX/PKHeX.Core/Saves/Substructures/Gen4/BattleFrontierPrintStatus4.cs
Kurt f7a888cc57 Extract some logic to SAV4
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.
2023-12-28 00:11:56 -08:00

10 lines
171 B
C#

namespace PKHeX.Core;
public enum BattleFrontierPrintStatus4
{
None = 0,
FirstReady = 1,
FirstReceived = 2,
SecondReady = 3,
SecondReceived = 4,
}