mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 08:23:12 +00:00
33e2c64721
Begone are the version-switch cases for value fetching.
14 lines
403 B
C#
14 lines
403 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Properties common to RS & Emerald save files.
|
|
/// </summary>
|
|
public interface IGen3Hoenn
|
|
{
|
|
RTC3 ClockInitial { get; set; }
|
|
RTC3 ClockElapsed { get; set; }
|
|
PokeBlock3Case PokeBlocks { get; set; }
|
|
DecorationInventory3 Decorations { get; set; }
|
|
bool HasReceivedWishmkrJirachi { get; set; }
|
|
}
|
|
}
|