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