SDRSharper/SDRSharper.PanView/SDRSharp.PanView/PositionEventArgs.cs
SDRSharpR c07e6e6034 SDRSharper (SDRSharp Remake) Full Source (VS2017)
SDRSharper (SDRSharp Remake) Full Source (VS2017)
2018-03-26 14:02:05 -07:00

21 lines
282 B
C#

using System;
namespace SDRSharp.PanView
{
public class PositionEventArgs : EventArgs
{
public float Xpos;
public float Ypos;
public bool Trig;
public PositionEventArgs(float x, float y, bool trig)
{
this.Xpos = x;
this.Ypos = y;
this.Trig = trig;
}
}
}