PKHeX/PKHeX.Core/Saves/Substructures/Gen3/IGen3Hoenn.cs

20 lines
511 B
C#
Raw Normal View History

2021-08-21 03:33:53 +00:00
using System.Collections.Generic;
namespace PKHeX.Core
{
/// <summary>
/// Properties common to RS &amp; Emerald save files.
/// </summary>
public interface IGen3Hoenn
{
RTC3 ClockInitial { get; set; }
RTC3 ClockElapsed { get; set; }
PokeBlock3Case PokeBlocks { get; set; }
DecorationInventory3 Decorations { get; set; }
Swarm3 Swarm { get; set; }
2021-08-21 03:33:53 +00:00
IReadOnlyList<Swarm3> DefaultSwarms { get; }
int SwarmIndex { get; set; }
}
}