public void Update(GameTime gameTime) { TransitionScreen(gameTime); currentscreen.Update(gameTime); if (Controller1_Connected) { foreach (Arduino Controller in Controllers) { Controller.Update(); } } }
public void Update(GameTime gameTime) { currentscreen.Update(gameTime); TransitionScreen(gameTime); }