Ejemplo n.º 1
0
        protected override void Update(GameTime gameTime)
        {
            if (Match != null)
            {
                Match.Update(gameTime);
            }

            if (Player != null)
            {
                Player.Update(gameTime);
            }

            HandleKeyBoard();

            base.Update(gameTime);
        }