Ejemplo n.º 1
0
        protected override void Update(GameTime gameTime)
        {
            if (Quit)
            {
                NetworkClient.Shutdown();
                Exit();
            }

            // TODO: Add your update logic here
            InputManager.Update();
            WindowManager.Update(gameTime);


            NetworkClient.CheckConnection(gameTime);

            base.Update(gameTime);
        }