public static void SetupControls(Panel battlefieldPanel)
        {
            BattlefieldPanel = battlefieldPanel;
            GUIObjects       = new List <GUIObject>();

            if (GameWindow.IsClient)
            {
            }
            else
            {
                GameplayProcessor.SetupGameplay();
            }
        }
Exemple #2
0
 public static void SetupControls(Panel battlefieldPanel)
 {
     BattlefieldPanel = battlefieldPanel;
     GameplayProcessor.SetupGameplay();
 }