Skip to content

Instantly share code, notes, and snippets.

@thealmikey
Last active January 21, 2020 02:54
Show Gist options
  • Save thealmikey/6998bba9f688df156067046544344348 to your computer and use it in GitHub Desktop.
Save thealmikey/6998bba9f688df156067046544344348 to your computer and use it in GitHub Desktop.
sealed class HumanState {
object PureBliss : HumanState()
object Happy : HumanState()
object Bored : HumanState()
object Sad : HumanState()
}
sealed class HumanAction {
object Entertain : HumanAction()
object GiveLecture : HumanAction()
object Annoy : HumanAction()
object GiveTherapy : HumanAction()
}
sealed class UseResult {
object ReportHappiness : UseResult()
object ReportSadness : UseResult()
object ReportBoredness : UseResult()
object ReportGoodWork : UseResult()
object ReportVibeKiller : UseResult()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment