mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
33e2c64721
Begone are the version-switch cases for value fetching.
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; }
|
|
}
|
|
}
|