PKHeX/PKHeX.Core/Saves/Substructures/Gen3/IGen3Hoenn.cs
Kurt 8bf618008a Remove structconverter
Won't work on bigendian architecture for non-byte fields, so just do it manually.
2022-03-25 19:47:23 -07:00

19 lines
506 B
C#

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; }
Swarm3 Swarm { get; set; }
IReadOnlyList<Swarm3> DefaultSwarms { get; }
int SwarmIndex { get; set; }
}
}