Skip to content

Instantly share code, notes, and snippets.

@ariefannur
Created February 13, 2018 08:45
Show Gist options
  • Save ariefannur/71d7b1ea41c3272b1f6715f680251407 to your computer and use it in GitHub Desktop.
Save ariefannur/71d7b1ea41c3272b1f6715f680251407 to your computer and use it in GitHub Desktop.
game lifecycle kotlin
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