コード例 #1
0
ファイル: Character.cs プロジェクト: karliky/wowwow
		public GMenu( uint menuId, GMenuIcons icon, bool inputBox, string text ) 
		{
			Add( menuId, icon, inputBox, text );
		}
コード例 #2
0
ファイル: Character.cs プロジェクト: karliky/wowwow
		public void Add( uint menuId, GMenuIcons icon, bool inputBox, string text )
		{
			list.Add( new GMenuItem( menuId, icon, inputBox, text ) );            
		}
コード例 #3
0
ファイル: Character.cs プロジェクト: karliky/wowwow
		public GMenuItem( uint menuId, GMenuIcons icon, bool inputBox, string text )
		{
			_menuId = menuId; _icon = icon; _inputBox = inputBox; _text = text;
		}