예제 #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;
		}