Created
February 13, 2018 08:45
-
-
Save ariefannur/71d7b1ea41c3272b1f6715f680251407 to your computer and use it in GitHub Desktop.
game lifecycle kotlin
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
interface GameState { | |
fun onStartEngine() | |
fun onUpdate(time:Long) | |
fun onFinish() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment