mirror of
https://github.com/kwsch/PKHeX
synced 2025-03-07 00:37:34 +00:00
14 lines
406 B
C#
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; }
|
|
}
|
|
}
|