mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-16 05:18:41 +00:00
[...]Block -> [...] since it's kinda redundant, we already know by its type. Rename offset ints that collide
18 lines
No EOL
500 B
C#
18 lines
No EOL
500 B
C#
namespace PKHeX.Core
|
|
{
|
|
public interface ISaveBlock8Main
|
|
{
|
|
MyItem Items { get; }
|
|
Record8 Records { get; }
|
|
PlayTime8 Played { get; }
|
|
MyStatus8 MyStatus { get; }
|
|
ConfigSave8 Config { get; }
|
|
GameTime8 GameTime { get; }
|
|
Misc8 Misc { get; }
|
|
Zukan8 Zukan { get; }
|
|
EventWork8 EventWork { get; }
|
|
BoxLayout8 BoxLayout { get; }
|
|
Situation8 Situation { get; }
|
|
FieldMoveModelSave8 Overworld { get; }
|
|
}
|
|
} |