public override void Update(GameTime gameTime)
        {
            network.Update(gameTime);
            if (!this.IsConnected)
            {
                this.Disconnect(string.Empty);
            }

            worldPump.Update(gameTime);
            world.ClientUpdate(gameTime);
            movementBodyBobEffect.Update(gameTime);
            effectManager.Update(gameTime);
        }