public GMenu( uint menuId, GMenuIcons icon, bool inputBox, string text ) { Add( menuId, icon, inputBox, text ); }
public void Add( uint menuId, GMenuIcons icon, bool inputBox, string text ) { list.Add( new GMenuItem( menuId, icon, inputBox, text ) ); }
public GMenuItem( uint menuId, GMenuIcons icon, bool inputBox, string text ) { _menuId = menuId; _icon = icon; _inputBox = inputBox; _text = text; }