Skip to content

Instantly share code, notes, and snippets.

@vialyx
Last active October 8, 2018 15:32
Show Gist options
  • Save vialyx/b63a9aa906f31009ffbab36cc0a833f5 to your computer and use it in GitHub Desktop.
Save vialyx/b63a9aa906f31009ffbab36cc0a833f5 to your computer and use it in GitHub Desktop.
class Player {
var playing: Bool = false
func play() {
playing = true
}
func stop() {
playing = false
}
func restore(playing: Bool) {
self.playing = playing
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment