Created
November 18, 2012 16:45
-
-
Save vgheri/4106163 to your computer and use it in GitHub Desktop.
Elapsed event handler
This file contains 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
// Specify what you want to happen when the Elapsed event is | |
// raised. | |
public static void OnPhysicsTimedEvent(object source, ElapsedEventArgs e) | |
{ | |
Engine.ProcessGamesTick(); | |
} | |
// Specify what you want to happen when the Elapsed event is | |
// raised. | |
public static void OnUpdateClientsTimedEvent(object source, ElapsedEventArgs e) | |
{ | |
Engine.UpdateClients(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment