mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00:00
a31217ef6a
* Various changes to Gen 3 Mystery Data * Update Gen3MysteryData.cs
20 lines
503 B
C#
20 lines
503 B
C#
using System.Collections.Generic;
|
|
|
|
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; }
|
|
Swarm3 Swarm { get; set; }
|
|
|
|
IReadOnlyList<Swarm3> DefaultSwarms { get; }
|
|
int SwarmIndex { get; set; }
|
|
|
|
RecordMixing3Gift RecordMixingGift { get; set; }
|
|
}
|