2
0
Fork 0
mirror of https://github.com/kwsch/PKHeX synced 2024-12-28 13:23:10 +00:00
PKHeX/PKHeX.Core/Saves/Substructures/Gen3/IGen3Joyful.cs

14 lines
364 B
C#
Raw Normal View History

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; }
}