File SelectedEventArgs.cs
File List > LemonUI > LemonUI > Menus > SelectedEventArgs.cs
Go to the documentation of this file
namespace LemonUI.Menus
{
public class SelectedEventArgs
{
#region Properties
public int Index { get; }
public int OnScreen { get; }
#endregion
#region Constructors
public SelectedEventArgs(int index, int screen)
{
Index = index;
OnScreen = screen;
}
#endregion
}
}