Skip to content

Instantly share code, notes, and snippets.

@sasssass
Created June 19, 2020 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sasssass/852940f20af61bccbd57afb2424b83f9 to your computer and use it in GitHub Desktop.
Save sasssass/852940f20af61bccbd57afb2424b83f9 to your computer and use it in GitHub Desktop.
class Light {
var color : Int = Color.WHITE
fun red(){
color = Color.RED
}
fun blue(){
color = Color.BLUE
}
fun white(){
color = Color.WHITE
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment