Advertisement
ada1711

Untitled

Jul 5th, 2024
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public static void Update()
  2. {
  3. if (gameState == GameState.Playing)
  4. {
  5. InputManager.HandleInput(player, bullets);
  6.  
  7. player.Update();
  8.  
  9. foreach (var bullet in bullets)
  10. {
  11. bullet.Update();
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement