mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
e472bfe278
move slotchange to core
32 lines
996 B
C#
32 lines
996 B
C#
namespace PKHeX.Core
|
|
{
|
|
public class SlotChangeInfo
|
|
{
|
|
public bool LeftMouseIsDown { get; set; }
|
|
public bool RightMouseIsDown { get; set; }
|
|
public bool DragDropInProgress { get; set; }
|
|
|
|
public object Cursor { get; set; }
|
|
public string CurrentPath { get; set; }
|
|
|
|
public SlotChange Source { get; private set; }
|
|
public SlotChange Destination { get; private set; }
|
|
|
|
private readonly byte[] BlankData;
|
|
|
|
public SlotChangeInfo(SaveFile sav)
|
|
{
|
|
BlankData = sav.BlankPKM.EncryptedPartyData;
|
|
Reset();
|
|
}
|
|
|
|
public bool SameSlot => Source.Slot == Destination.Slot && Source.Box == Destination.Box;
|
|
public void Reset()
|
|
{
|
|
LeftMouseIsDown = RightMouseIsDown = DragDropInProgress = false;
|
|
Source = new SlotChange { OriginalData = BlankData };
|
|
Destination = new SlotChange();
|
|
Cursor = CurrentPath = null;
|
|
}
|
|
}
|
|
}
|