Ejemplo n.º 1
0
 public void Update(GameTime gameTime)
 {
     TransitionScreen(gameTime);
     currentscreen.Update(gameTime);
     if (Controller1_Connected)
     {
         foreach (Arduino Controller in Controllers)
         {
             Controller.Update();
         }
     }
 }
Ejemplo n.º 2
0
 public void Update(GameTime gameTime)
 {
     currentscreen.Update(gameTime);
     TransitionScreen(gameTime);
 }