UBrowser
Class UBrowserConsole

source: e:\games\UnrealTournament\UBrowser\Classes\UBrowserConsole.uc
Core.Object
   |
   +--Engine.Console
      |
      +--UWindow.WindowConsole
         |
         +--UBrowser.UBrowserConsole
Direct Known Subclasses:None

class UBrowserConsole
extends UWindow.WindowConsole



Function Summary
 void ShowUBrowser()



Source Code


00001	class UBrowserConsole expands WindowConsole;
00002	
00003	event bool KeyEvent( EInputKey Key, EInputAction Action, FLOAT Delta )
00004	{
00005		return Super(Console).KeyEvent( Key, Action, Delta );
00006	}
00007	
00008	exec function ShowUBrowser()
00009	{
00010		Super.LaunchUWindow();
00011	}
00012	
00013	defaultproperties
00014	{
00015	}

End Source Code