using System.Collections.Generic; namespace PKHeX.Core; /// /// Properties common to RS & Emerald save files. /// public interface IGen3Hoenn { RTC3 ClockInitial { get; set; } RTC3 ClockElapsed { get; set; } PokeBlock3Case PokeBlocks { get; set; } DecorationInventory3 Decorations { get; } Swarm3 Swarm { get; set; } IReadOnlyList DefaultSwarms { get; } int SwarmIndex { get; set; } }