mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 12:33:02 +00:00
33 lines
773 B
C#
33 lines
773 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SanAndreasUnity.Utilities
|
|
{
|
|
|
|
public class MenuBarEntry
|
|
{
|
|
public string name = "";
|
|
public int sortPriority = 0;
|
|
public List<MenuBarEntry> children = new List<MenuBarEntry>();
|
|
public System.Action drawAction = null;
|
|
public System.Action clickAction = null;
|
|
|
|
public int AddChild(MenuBarEntry entry)
|
|
{
|
|
int index = this.children.FindIndex(e => e.sortPriority > entry.sortPriority);
|
|
|
|
if (index < 0)
|
|
{
|
|
this.children.Add(entry);
|
|
return 0;
|
|
}
|
|
else
|
|
{
|
|
this.children.Insert(index, entry);
|
|
return index;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|