PKHeX/PKHeX.Core/Saves/Substructures/Gen3/IGen3Joyful.cs
Kurt 33e2c64721 Split SAV3 into version classes
Begone are the version-switch cases for value fetching.
2021-03-15 23:51:58 -07:00

14 lines
406 B
C#

namespace PKHeX.Core
{
public interface IGen3Joyful
{
ushort JoyfulJumpInRow { get; set; }
ushort JoyfulJump5InRow { get; set; }
ushort JoyfulJumpGamesMaxPlayers { get; set; }
uint JoyfulJumpScore { get; set; }
uint JoyfulBerriesScore { get; set; }
ushort JoyfulBerriesInRow { get; set; }
ushort JoyfulBerries5InRow { get; set; }
}
}