using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Terminal.Gui {
///
/// Args for events that describe a change in
///
public class MouseFlagsChangedEventArgs : EventArgs{
///
/// Creates a new instance of the class.
///
///
///
public MouseFlagsChangedEventArgs (MouseFlags oldValue, MouseFlags newValue)
{
OldValue = oldValue;
NewValue = newValue;
}
///
/// The old value before event
///
public MouseFlags OldValue { get; }
///
/// The new value
///
public MouseFlags NewValue { get; }
}
}