2023-03-20 23:26:23 +00:00
|
|
|
using System.Collections.Generic;
|
2021-08-21 03:33:53 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Properties common to RS & Emerald save files.
|
|
|
|
/// </summary>
|
|
|
|
public interface IGen3Hoenn
|
2021-03-16 06:51:58 +00:00
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
RTC3 ClockInitial { get; set; }
|
|
|
|
RTC3 ClockElapsed { get; set; }
|
|
|
|
PokeBlock3Case PokeBlocks { get; set; }
|
|
|
|
DecorationInventory3 Decorations { get; }
|
|
|
|
Swarm3 Swarm { get; set; }
|
2021-08-21 03:33:53 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
IReadOnlyList<Swarm3> DefaultSwarms { get; }
|
|
|
|
int SwarmIndex { get; set; }
|
2023-03-20 23:26:23 +00:00
|
|
|
|
|
|
|
RecordMixing3Gift RecordMixingGift { get; set; }
|
2021-03-16 06:51:58 +00:00
|
|
|
}
|