mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
053eef2767
Closes #2840 -- access via Block Editor "Encount" Tons of undecipherable junk in the roamer struct; looks like a mishmash of past gen code repurposed for their pseudo-stationary|roamer encounter. ORAS has the same structure (same size/block), but the roamer portion isn't used
14 lines
No EOL
425 B
C#
14 lines
No EOL
425 B
C#
namespace PKHeX.Core
|
|
{
|
|
public interface ISaveBlock6Main : ISaveBlock6Core, IPokePuff, IOPower, ILink
|
|
{
|
|
BoxLayout6 BoxLayout { get; }
|
|
BattleBox6 BattleBox { get; }
|
|
ConfigSave6 Config { get; }
|
|
MysteryBlock6 MysteryGift { get; }
|
|
SuperTrainBlock SuperTrain { get; }
|
|
MaisonBlock Maison { get; }
|
|
SubEventLog6 SUBE { get; }
|
|
Encount6 Encount { get; }
|
|
}
|
|
} |