mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
6e741a0cf0
Add xmldoc Remove linq from memecrypto code (speed lmao) Hide some methods that shouldn't be called directly Name variables better for accessor const's
29 lines
985 B
C#
29 lines
985 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Interface for Accessing named blocks within a Generation 7 save file.
|
|
/// </summary>
|
|
/// <remarks>Blocks common for <see cref="SAV7SM"/> and <see cref="SAV7USUM"/>.</remarks>
|
|
public interface ISaveBlock7Main
|
|
{
|
|
MyItem Items { get; }
|
|
MysteryBlock7 MysteryGift { get; }
|
|
PokeFinder7 PokeFinder { get; }
|
|
JoinFesta7 Festa { get; }
|
|
Daycare7 Daycare { get; }
|
|
RecordBlock6 Records { get; }
|
|
PlayTime6 Played { get; }
|
|
MyStatus7 MyStatus { get; }
|
|
FieldMoveModelSave7 Overworld { get; }
|
|
Situation7 Situation { get; }
|
|
ConfigSave7 Config { get; }
|
|
GameTime7 GameTime { get; }
|
|
Misc7 Misc { get; }
|
|
Zukan7 Zukan { get; }
|
|
BoxLayout7 BoxLayout { get; }
|
|
BattleTree7 BattleTree { get; }
|
|
ResortSave7 ResortSave { get; }
|
|
FieldMenu7 FieldMenu { get; }
|
|
FashionBlock7 Fashion { get; }
|
|
}
|
|
}
|