Created
September 3, 2017 13:03
-
-
Save Odonno/8e59db7a9cab33cfd5d16c9081e34a12 to your computer and use it in GitHub Desktop.
Update method in C# MonoGame
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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