mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 08:23:12 +00:00
15 lines
406 B
C#
15 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; }
|
|||
|
}
|
|||
|
}
|