Implemented mod: MoveSprite

This commit is contained in:
quinnvoker
2018-12-31 08:01:24 -08:00
parent 73bbbf9dda
commit 70d7680cf0
6 changed files with 84 additions and 20 deletions
@@ -0,0 +1,19 @@
using System;
using Microsoft.Xna.Framework;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AnimationEditor.Modifications
{
class SpriteDragArgs : EventArgs
{
public Vector2 DragDistance { get; private set; }
public SpriteDragArgs(Vector2 drag)
{
DragDistance = drag;
}
}
}