Last active
January 21, 2020 02:54
-
-
Save thealmikey/6998bba9f688df156067046544344348 to your computer and use it in GitHub Desktop.
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
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