first commit
This commit is contained in:
+193
@@ -0,0 +1,193 @@
|
||||
class Cafe2_BaseUIScreen
|
||||
{
|
||||
var m_changeToScreen = null;
|
||||
var m_executeOuttroCallBack = null;
|
||||
var m_uiComponentArray = new Array();
|
||||
function Cafe2_BaseUIScreen(screen)
|
||||
{
|
||||
Cafe2_BaseUIScreen.m_screen = screen;
|
||||
Cafe2_BaseUIScreen.m_screen.onEnterFrame = _global.bind0(this,this.frameDelayedInitCallback);
|
||||
}
|
||||
function frameDelayedInit()
|
||||
{
|
||||
trace("\n\nCafe2_BaseUIScreen::frameDelayedInitCallback() :");
|
||||
var _loc1_ = new Array("N.B. You *must* override frameDelayedInit() in your","\nscreens and move the call to initGUI() to frameDelayedInit().\n");
|
||||
trace(_loc1_[0] + _loc1_[1]);
|
||||
}
|
||||
function frameDelayedInitCallback()
|
||||
{
|
||||
Cafe2_BaseUIScreen.m_screen.onEnterFrame = null;
|
||||
this.frameDelayedInit();
|
||||
}
|
||||
function outtroComplete(theComponent)
|
||||
{
|
||||
trace("Cafe2_BaseUIScreen::outtroComplete() " + theComponent);
|
||||
var _loc2_ = 0;
|
||||
while(_loc2_ < Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length)
|
||||
{
|
||||
if(theComponent == Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc2_])
|
||||
{
|
||||
break;
|
||||
}
|
||||
_loc2_ = _loc2_ + 1;
|
||||
}
|
||||
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.splice(_loc2_,1);
|
||||
if(Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length <= 0)
|
||||
{
|
||||
if(Cafe2_BaseUIScreen.m_thisClass.m_changeToScreen != null)
|
||||
{
|
||||
_global.gSM.changeMainScreen(Cafe2_BaseUIScreen.m_thisClass.m_changeToScreen);
|
||||
}
|
||||
}
|
||||
}
|
||||
function introComplete(theComponent)
|
||||
{
|
||||
trace("Cafe2_BaseUIScreen::introComplete()");
|
||||
theComponent.restoreVisualState();
|
||||
Cafe2_BaseUIScreen.m_thisClass.m_introCount--;
|
||||
if(Cafe2_BaseUIScreen.m_thisClass.m_introCount <= 0)
|
||||
{
|
||||
Cafe2_BaseUIScreen.m_thisClass.onIntrosComplete();
|
||||
}
|
||||
}
|
||||
function onIntrosComplete()
|
||||
{
|
||||
trace("Cafe2_BaseUIScreen::onIntrosComplete()");
|
||||
_global.gEH.setLocalEventHandler(this.localEventHandler);
|
||||
_global.gEH.enableCurrentLocalEventHandler();
|
||||
}
|
||||
function registerIntroOuttroComponents(components)
|
||||
{
|
||||
trace("Cafe2_BaseUIScreen::registerIntroOuttroComponents()");
|
||||
this.m_uiComponentArray = components;
|
||||
this.m_introCount = this.m_uiComponentArray.length;
|
||||
var _loc2_ = 0;
|
||||
while(_loc2_ < this.m_introCount)
|
||||
{
|
||||
this.m_uiComponentArray[_loc2_].setIntroCallback(this.introComplete);
|
||||
_loc2_ = _loc2_ + 1;
|
||||
}
|
||||
}
|
||||
function executeBackFunction(theComponent)
|
||||
{
|
||||
trace("Cafe2_BaseUIScreen::executeBackFunction" + theComponent);
|
||||
var _loc2_ = 0;
|
||||
while(_loc2_ < Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length)
|
||||
{
|
||||
if(theComponent == Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc2_])
|
||||
{
|
||||
break;
|
||||
}
|
||||
_loc2_ = _loc2_ + 1;
|
||||
}
|
||||
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.splice(_loc2_,1);
|
||||
if(Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length <= 0)
|
||||
{
|
||||
_global.gSM.goBackScreen();
|
||||
}
|
||||
}
|
||||
function startIntro()
|
||||
{
|
||||
trace("Cafe2_BaseUIScreen::startIntro()");
|
||||
var _loc3_ = this.m_uiComponentArray.length;
|
||||
var _loc2_ = 0;
|
||||
while(_loc2_ < _loc3_)
|
||||
{
|
||||
this.m_uiComponentArray[_loc2_].intro();
|
||||
_loc2_ = _loc2_ + 1;
|
||||
}
|
||||
}
|
||||
function startOuttro(newScreen)
|
||||
{
|
||||
trace("Cafe2_BaseUIScreen::startOuttro");
|
||||
this.m_changeToScreen = newScreen;
|
||||
var _loc3_ = Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length;
|
||||
if(_loc3_ > 0)
|
||||
{
|
||||
var _loc2_ = 0;
|
||||
while(_loc2_ < _loc3_)
|
||||
{
|
||||
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc2_].outtro(this.outtroComplete);
|
||||
_loc2_ = _loc2_ + 1;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
this.outtroComplete(null);
|
||||
}
|
||||
}
|
||||
function startOuttroAndCallBack(doAfterOuttroComplete)
|
||||
{
|
||||
trace("Cafe2_BaseUIScreen::startOuttro");
|
||||
this.m_executeOuttroCallBack = doAfterOuttroComplete;
|
||||
var _loc3_ = Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length;
|
||||
if(_loc3_ > 0)
|
||||
{
|
||||
var _loc2_ = 0;
|
||||
while(_loc2_ < _loc3_)
|
||||
{
|
||||
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc2_].outtro(this.outtroAndCallBackComplete);
|
||||
_loc2_ = _loc2_ + 1;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
this.outtroAndCallBackComplete(null);
|
||||
}
|
||||
}
|
||||
function outtroAndCallBackComplete(theComponent)
|
||||
{
|
||||
trace("Cafe2_BaseUIScreen::outtroComplete() " + theComponent);
|
||||
var _loc1_ = 0;
|
||||
while(_loc1_ < Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length)
|
||||
{
|
||||
if(theComponent == Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc1_])
|
||||
{
|
||||
break;
|
||||
}
|
||||
_loc1_ = _loc1_ + 1;
|
||||
}
|
||||
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.splice(_loc1_,1);
|
||||
if(Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length <= 0)
|
||||
{
|
||||
Cafe2_BaseUIScreen.m_thisClass.m_executeOuttroCallBack();
|
||||
}
|
||||
}
|
||||
function backButtonClicked()
|
||||
{
|
||||
trace("Cafe2_BaseUIScreen::backButtonClicked()");
|
||||
var _loc3_ = Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length;
|
||||
if(_loc3_ > 0)
|
||||
{
|
||||
var _loc2_ = 0;
|
||||
while(_loc2_ < _loc3_)
|
||||
{
|
||||
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc2_].outtro(Cafe2_BaseUIScreen.m_thisClass.executeBackFunction);
|
||||
_loc2_ = _loc2_ + 1;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
_global.gSM.goBackScreen();
|
||||
}
|
||||
}
|
||||
function localEventHandler(keyCode, controller)
|
||||
{
|
||||
trace("Cafe2_BaseUIScreen::localEventHandler() keyCode == " + keyCode);
|
||||
_global.gFM.handleDefaultInputs(keyCode);
|
||||
}
|
||||
function clearData()
|
||||
{
|
||||
Cafe2_BaseUIScreen.m_screen = null;
|
||||
Cafe2_BaseUIScreen.m_thisClass = null;
|
||||
this.m_changeToScreen = null;
|
||||
this.m_uiComponentArray = null;
|
||||
}
|
||||
function bind0(obj, func)
|
||||
{
|
||||
return function()
|
||||
{
|
||||
func.call(obj);
|
||||
};
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,193 @@
|
||||
class fem_m_lanLobby extends Cafe2_BaseUIScreen
|
||||
{
|
||||
function fem_m_lanLobby(screen)
|
||||
{
|
||||
super(screen);
|
||||
Cafe2_BaseUIScreen.m_thisClass = this;
|
||||
this.m_localMessageHandlerFunc = _global.bind1DynamicParams(this,this.localMessageHandler);
|
||||
this.m_serverListCallbackFunc = _global.bind2DynamicParams(this,this.onServerListboxMouseClick);
|
||||
this.m_playerListCallbackFunc = _global.bind2DynamicParams(this,this.onPlayerListboxMouseClick);
|
||||
_global.gSM.setOnExitScreen(_global.bind0(this,this.onScreenExit));
|
||||
// Checked
|
||||
getUrl("FSCommand:CallGameFunction", "%LanInit");
|
||||
_global.GAME.MODE = _global.ENUM.GAME_MODE_LAN_MP;
|
||||
}
|
||||
function frameDelayedInit()
|
||||
{
|
||||
_global.gMH.addMessageHandler(this.m_localMessageHandlerFunc);
|
||||
this.initGUI();
|
||||
}
|
||||
function initGUI()
|
||||
{
|
||||
var _loc3_ = new Array();
|
||||
this.configureButton(Cafe2_BaseUIScreen.m_screen.joinButton,_global.bind0(this,this.joinButtonClicked));
|
||||
this.configureButton(Cafe2_BaseUIScreen.m_screen.createButton,_global.bind0(this,this.createButtonClicked));
|
||||
this.configureButton(Cafe2_BaseUIScreen.m_screen.backButton,_global.bind0(this,this.backButtonClicked));
|
||||
this.initServerList();
|
||||
this.initPlayerList();
|
||||
this.updateButtonState();
|
||||
}
|
||||
function configureButton(button, callback)
|
||||
{
|
||||
button.show();
|
||||
button.enable();
|
||||
button.setOnMouseUpFunction(callback);
|
||||
button.noIntro();
|
||||
}
|
||||
function onScreenExit()
|
||||
{
|
||||
_global.gMH.removeMessageHandler(this.m_localMessageHandlerFunc);
|
||||
delete this.m_localMessageHandlerFunc;
|
||||
Cafe2_BaseUIScreen.m_screen.serverList.removeListenerFunction(this.m_serverListCallbackFunc);
|
||||
Cafe2_BaseUIScreen.m_screen.serverList.shutdown();
|
||||
delete this.m_serverListCallbackFunc;
|
||||
Cafe2_BaseUIScreen.m_screen.playerList.removeListenerFunction(this.m_playerListCallbackFunc);
|
||||
Cafe2_BaseUIScreen.m_screen.playerList.shutdown();
|
||||
delete this.m_playerListCallbackFunc;
|
||||
this.clearData();
|
||||
delete _global.fem_m_lanLobby;
|
||||
delete _global.Cafe2_BaseUIScreen;
|
||||
}
|
||||
function localMessageHandler(message)
|
||||
{
|
||||
var _loc3_ = true;
|
||||
switch(message)
|
||||
{
|
||||
case _global.MSGCODE.FE_LAN_REFRESH_GAMELIST:
|
||||
this.populateGameList();
|
||||
break;
|
||||
case _global.MSGCODE.FE_LAN_REFRESH_PLAYERLIST:
|
||||
this.populatePlayerList();
|
||||
break;
|
||||
case _global.MSGCODE.FE_LAN_HOST_GAME_CREATED:
|
||||
this.startOuttro(_global.SCREEN.FEM_LAN_SETUP);
|
||||
break;
|
||||
case _global.MSGCODE.FE_LAN_CLIENT_GAME_JOINED:
|
||||
this.startOuttro(_global.SCREEN.FEM_LAN_SETUP);
|
||||
break;
|
||||
case _global.MSGCODE.FE_MP_LAN_LOBBY_STATE_CHANGE:
|
||||
this.updateButtonState();
|
||||
break;
|
||||
default:
|
||||
_loc3_ = false;
|
||||
}
|
||||
return _loc3_;
|
||||
}
|
||||
function populateGameList()
|
||||
{
|
||||
var _loc3_ = new Array();
|
||||
var _loc2_ = new Object();
|
||||
// Checked
|
||||
loadVariables("QueryGameEngine?LAN_GAMELIST",_loc2_);
|
||||
this.m_gameNames = _loc2_.LAN_GAMELIST_NAMES.split(",");
|
||||
Cafe2_BaseUIScreen.m_screen.serverList.setColumnData(0,this.m_gameNames);
|
||||
Cafe2_BaseUIScreen.m_screen.serverList.refreshDisplay();
|
||||
Cafe2_BaseUIScreen.m_screen.serverList.refreshScrollbar();
|
||||
}
|
||||
function populatePlayerList()
|
||||
{
|
||||
var _loc2_ = new Array();
|
||||
var _loc1_ = new Object();
|
||||
// Checked
|
||||
loadVariables("QueryGameEngine?LAN_PLAYERLIST",_loc1_);
|
||||
m_playerIds = _loc1_.LAN_PLAYERLIST_NAMES.split(",");
|
||||
Cafe2_BaseUIScreen.m_screen.playerList.setColumnData(0,m_playerIds);
|
||||
Cafe2_BaseUIScreen.m_screen.playerList.refreshDisplay();
|
||||
Cafe2_BaseUIScreen.m_screen.playerList.refreshScrollbar();
|
||||
}
|
||||
function backButtonClicked()
|
||||
{
|
||||
// Checked
|
||||
getUrl("FSCommand:CallGameFunction", "%LanShutdown");
|
||||
_global.GAME.MODE = _global.ENUM.GAME_MODE_SHELL;
|
||||
super.backButtonClicked();
|
||||
}
|
||||
function createButtonClicked()
|
||||
{
|
||||
Cafe2_BaseUIScreen.m_screen.joinButton.disable();
|
||||
Cafe2_BaseUIScreen.m_screen.createButton.disable();
|
||||
// Checked
|
||||
getUrl("FSCommand:CallGameFunction", "%LanCreateGame");
|
||||
}
|
||||
function joinButtonClicked()
|
||||
{
|
||||
Cafe2_BaseUIScreen.m_screen.joinButton.disable();
|
||||
Cafe2_BaseUIScreen.m_screen.createButton.disable();
|
||||
// Checked
|
||||
getURL("FSCommand:CallGameFunction","%LanJoinGame?Game=" + Cafe2_BaseUIScreen.m_screen.serverList.getSelectedEntryIndex());
|
||||
}
|
||||
function initServerList()
|
||||
{
|
||||
var _loc3_ = Cafe2_BaseUIScreen.m_screen.serverListScrollBar;
|
||||
_loc3_.show();
|
||||
_loc3_.enable();
|
||||
var _loc2_ = Cafe2_BaseUIScreen.m_screen.serverList;
|
||||
_loc2_.setNumEntries(15);
|
||||
_loc2_.setVerticalPadding(1);
|
||||
_loc2_.addListenerFunction(this.m_serverListCallbackFunc);
|
||||
var _loc4_ = new Array();
|
||||
_loc4_.push({symbol:"std_mouseListboxEntryTextElementSymbol",width:458,leftMargin:0,rightMargin:0});
|
||||
_loc2_.init(_loc4_,25);
|
||||
_loc2_.attachScrollbarController(_loc3_);
|
||||
_loc2_.moveViewToFirst();
|
||||
_loc2_.refreshDisplay();
|
||||
_loc2_.refreshScrollbar();
|
||||
}
|
||||
function initPlayerList()
|
||||
{
|
||||
var _loc3_ = Cafe2_BaseUIScreen.m_screen.playerListScrollBar;
|
||||
_loc3_.show();
|
||||
_loc3_.enable();
|
||||
var _loc2_ = Cafe2_BaseUIScreen.m_screen.playerList;
|
||||
_loc2_.setNumEntries(20);
|
||||
_loc2_.setVerticalPadding(1);
|
||||
_loc2_.addListenerFunction(this.m_playerListCallbackFunc);
|
||||
var _loc4_ = new Array();
|
||||
_loc4_.push({symbol:"std_mouseListboxEntryTextElementSymbol",width:458,leftMargin:0,rightMargin:0});
|
||||
_loc2_.init(_loc4_,25);
|
||||
_loc2_.attachScrollbarController(_loc3_);
|
||||
_loc2_.moveViewToFirst();
|
||||
_loc2_.refreshDisplay();
|
||||
_loc2_.refreshScrollbar();
|
||||
}
|
||||
function onServerListboxMouseClick(index, prevIndex)
|
||||
{
|
||||
var _loc3_ = new Object();
|
||||
// Checked
|
||||
loadVariables("QueryGameEngine?LASTMOUSEPRESSTYPE&LASTMOUSEDOUBLECLICK",_loc3_);
|
||||
if(Number(_loc3_.LASTMOUSEPRESSTYPE) == _global.ENUM.MOUSEBUTTONPRESS_LEFT && Number(_loc3_.LASTMOUSEDOUBLECLICK) != 0)
|
||||
{
|
||||
this.joinButtonClicked();
|
||||
}
|
||||
else
|
||||
{
|
||||
this.updateButtonState();
|
||||
}
|
||||
}
|
||||
function onPlayerListboxMouseClick(index, prevIndex)
|
||||
{
|
||||
}
|
||||
function updateButtonState()
|
||||
{
|
||||
var _loc1_ = new Object();
|
||||
// Checked
|
||||
loadVariables("QueryGameEngine?LAN_CAN_HOST_OR_JOIN",_loc1_);
|
||||
if(_loc1_.LAN_CAN_HOST_OR_JOIN == "1")
|
||||
{
|
||||
if(Cafe2_BaseUIScreen.m_screen.serverList.getSelectedEntryIndex() >= 0)
|
||||
{
|
||||
Cafe2_BaseUIScreen.m_screen.joinButton.enable();
|
||||
}
|
||||
else
|
||||
{
|
||||
Cafe2_BaseUIScreen.m_screen.joinButton.disable();
|
||||
}
|
||||
Cafe2_BaseUIScreen.m_screen.createButton.enable();
|
||||
}
|
||||
else
|
||||
{
|
||||
Cafe2_BaseUIScreen.m_screen.joinButton.disable();
|
||||
Cafe2_BaseUIScreen.m_screen.createButton.disable();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
var screen = new fem_m_lanLobby(this);
|
||||
stop();
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
on(construct){
|
||||
m_numLines = 0;
|
||||
m_width = 465;
|
||||
m_chatMode = 2;
|
||||
m_preservePlacement = false;
|
||||
m_height = 213;
|
||||
}
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
on(construct){
|
||||
m_focusDirs = "Up/Down";
|
||||
m_numEntries = 20;
|
||||
m_vPadding = 2;
|
||||
m_bEnabled = true;
|
||||
m_refFM = "_root.gFM";
|
||||
m_initiallySelected = false;
|
||||
m_tabIndex = 0;
|
||||
m_bVisible = true;
|
||||
m_scrollbarOffset = [];
|
||||
m_scrollbarOffset[0] = 10;
|
||||
m_scrollbarOffset[1] = 0;
|
||||
m_BgVisible = false;
|
||||
m_renderWidth = 458;
|
||||
m_renderHeight = 499;
|
||||
m_backgroundMargin = 2;
|
||||
m_useHighlights = true;
|
||||
m_alternateBackgroundColors = true;
|
||||
m_backgroundColor1 = 2622726;
|
||||
m_backgroundColor2 = 0;
|
||||
}
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
on(construct){
|
||||
m_focusDirs = "Up/Down";
|
||||
m_numEntries = 20;
|
||||
m_vPadding = 2;
|
||||
m_bEnabled = true;
|
||||
m_refFM = "_root.gFM";
|
||||
m_initiallySelected = false;
|
||||
m_tabIndex = 0;
|
||||
m_bVisible = true;
|
||||
m_scrollbarOffset = [];
|
||||
m_scrollbarOffset[0] = 10;
|
||||
m_scrollbarOffset[1] = 0;
|
||||
m_BgVisible = false;
|
||||
m_renderWidth = 458;
|
||||
m_renderHeight = 211;
|
||||
m_backgroundMargin = 2;
|
||||
m_useHighlights = true;
|
||||
m_alternateBackgroundColors = true;
|
||||
m_backgroundColor1 = 2622726;
|
||||
m_backgroundColor2 = 0;
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
on(construct){
|
||||
m_nLength = 100;
|
||||
m_nMax = 10;
|
||||
m_nMin = 0;
|
||||
m_nValue = 0;
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
on(construct){
|
||||
m_nLength = 100;
|
||||
m_nMax = 10;
|
||||
m_nMin = 0;
|
||||
m_nValue = 0;
|
||||
}
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
on(construct){
|
||||
m_width = 200;
|
||||
m_textAlign = true;
|
||||
m_labelPosition = "right align";
|
||||
m_label_x = 0;
|
||||
m_label_y = 0;
|
||||
m_focusDirs = "Up/Down";
|
||||
m_iconType = "default";
|
||||
m_extLabel = "";
|
||||
m_nTruncateType = 0;
|
||||
m_label = "$JOINGAMEBUTTON";
|
||||
m_bEnabled = true;
|
||||
m_refFM = "_global.gFM";
|
||||
m_initiallySelected = false;
|
||||
m_tabIndex = 1;
|
||||
m_bVisible = true;
|
||||
m_contentSymbol = "buttonContentSymbol";
|
||||
}
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
on(construct){
|
||||
m_width = 200;
|
||||
m_textAlign = true;
|
||||
m_labelPosition = "right align";
|
||||
m_label_x = 0;
|
||||
m_label_y = 0;
|
||||
m_focusDirs = "Up/Down";
|
||||
m_iconType = "default";
|
||||
m_extLabel = "";
|
||||
m_nTruncateType = 0;
|
||||
m_label = "$AcceptCreate";
|
||||
m_bEnabled = true;
|
||||
m_refFM = "_global.gFM";
|
||||
m_initiallySelected = false;
|
||||
m_tabIndex = 2;
|
||||
m_bVisible = true;
|
||||
m_contentSymbol = "buttonContentSymbol";
|
||||
}
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
on(construct){
|
||||
m_width = 200;
|
||||
m_textAlign = true;
|
||||
m_labelPosition = "right align";
|
||||
m_label_x = 0;
|
||||
m_label_y = 0;
|
||||
m_focusDirs = "Up/Down";
|
||||
m_iconType = "default";
|
||||
m_extLabel = "";
|
||||
m_nTruncateType = 0;
|
||||
m_label = "$Back";
|
||||
m_bEnabled = true;
|
||||
m_refFM = "_root.gFM";
|
||||
m_initiallySelected = false;
|
||||
m_tabIndex = 4;
|
||||
m_bVisible = true;
|
||||
m_contentSymbol = "buttonContentSymbol";
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
on(construct){
|
||||
m_title = "$LANLOBBY";
|
||||
m_DropShadow = true;
|
||||
m_Outline = true;
|
||||
m_visible = true;
|
||||
}
|
||||
Reference in New Issue
Block a user