Ejemplo n.º 1
0
		public GMenu( uint menuId, GMenuIcons icon, bool inputBox, string text ) 
		{
			Add( menuId, icon, inputBox, text );
		}
Ejemplo n.º 2
0
		public void Add( uint menuId, GMenuIcons icon, bool inputBox, string text )
		{
			list.Add( new GMenuItem( menuId, icon, inputBox, text ) );            
		}
Ejemplo n.º 3
0
		public GMenuItem( uint menuId, GMenuIcons icon, bool inputBox, string text )
		{
			_menuId = menuId; _icon = icon; _inputBox = inputBox; _text = text;
		}