Skip to content

Instantly share code, notes, and snippets.

@Odonno
Created September 3, 2017 13:03
Show Gist options
  • Save Odonno/8e59db7a9cab33cfd5d16c9081e34a12 to your computer and use it in GitHub Desktop.
Save Odonno/8e59db7a9cab33cfd5d16c9081e34a12 to your computer and use it in GitHub Desktop.
Update method in C# MonoGame
protected override void Update(GameTime gameTime)
{
_player1.Update(gameTime);
_player2.Update(gameTime);
base.Update(gameTime);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment