RAGECOOP-V/RageCoop.Client/LemonUI/Menus/GridValueChangedArgs.cs
2022-06-27 13:02:31 +08:00

26 lines
660 B
C#

using System.Drawing;
namespace LemonUI.Menus
{
/// <summary>
/// Represents the Previous and Current X and Y values when changing the position on a grid.
/// </summary>
public class GridValueChangedArgs
{
/// <summary>
/// The values present before they were changed.
/// </summary>
public PointF Before { get; }
/// <summary>
/// The values present after they were changed.
/// </summary>
public PointF After { get; }
internal GridValueChangedArgs(PointF before, PointF after)
{
Before = before;
After = after;
}
}
}