18 lines
309 B
C#
18 lines
309 B
C#
using System;
|
|
|
|
namespace TBF.UiBridge
|
|
{
|
|
/// <summary>
|
|
/// Argument of UiBridgeEventHandler.
|
|
/// </summary>
|
|
public class ButtonsEtcEventArgs : EventArgs
|
|
{
|
|
public ButtonsEtc Flags; /// Flags to be passed to the UI.
|
|
|
|
public ButtonsEtcEventArgs(ButtonsEtc flags)
|
|
{
|
|
this.Flags = flags;
|
|
}
|
|
}
|
|
}
|