mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-18 19:17:46 -05:00
Increase abstraction for arbitrary slot get/set operations, and fracture SAV4 behavior for each game type. Adds: Undo/Redo of party slot changes Fixes: Fixed Gen5 daycare slot 2 reading, and EXP reading Fixes: Some slot color glitchiness Fixed: Box layout editor now hides the flag label if no flags are present Fixed: Gen7 box flags are now shown (unknown purpose lol) Changed: savefile objects are generally smaller (removed a few shared offset fields)
13 lines
328 B
C#
13 lines
328 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Message enumeration indicating why a Write Operation would be blocked for a given <see cref="ISlotInfo"/>
|
|
/// </summary>
|
|
public enum WriteBlockedMessage
|
|
{
|
|
None,
|
|
InvalidPartyConfiguration,
|
|
IncompatibleFormat,
|
|
InvalidDestination,
|
|
}
|
|
} |