Added: SelectionState; New Undoable Mods: AddAnimation, RemoveAnimation, AddFrame, RemoveFrame, RemoveSprite

This commit is contained in:
quinnvoker
2018-12-26 21:07:21 -08:00
parent 2e72c46b7b
commit aaa80bd654
16 changed files with 761 additions and 120 deletions
@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AnimationEditor.Modifications
{
public interface IModification
{
void Do();
void Undo();
SelectionState GetPreChangeSelection();
void SetPreChangeSelection(SelectionState currentSelection);
SelectionState GetPostChangeSelection();
void SetPostChangeSelection(SelectionState currentSelection);
}
}