Core.Object | +--UWindow.UWindowBase | +--UWindow.UWindowWindow | +--UWindow.UWindowFramedWindow | +--UMenu.UMenuFramedWindow | +--UTMenu.ngWorldSecretWindow
void
BeginPlay()
Created()
00001 class ngWorldSecretWindow extends UMenuFramedWindow; 00002 00003 function BeginPlay() 00004 { 00005 Super.BeginPlay(); 00006 00007 ClientClass = class'ngWorldSecretClient'; 00008 } 00009 00010 function Created() 00011 { 00012 bStatusBar = False; 00013 bSizable = False; 00014 00015 Super.Created(); 00016 00017 if (Root.WinWidth < 640) 00018 { 00019 SetSize(310, 120); 00020 } else { 00021 SetSize(350, 120); 00022 } 00023 WinLeft = Root.WinWidth/2 - WinWidth/2; 00024 WinTop = Root.WinHeight/2 - WinHeight/2; 00025 } 00026 00027 defaultproperties 00028 { 00029 WindowTitle="ngWorldStats Password" 00030 }