mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
25 lines
461 B
C#
25 lines
461 B
C#
using System;
|
|
|
|
namespace Artemis.VisualScripting.Events
|
|
{
|
|
public class VisualScriptNodeDragMovingEventArgs : EventArgs
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public double DX { get; }
|
|
public double DY { get; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public VisualScriptNodeDragMovingEventArgs(double dx, double dy)
|
|
{
|
|
this.DX = dx;
|
|
this.DY = dy;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|