Created
October 1, 2018 17:58
-
-
Save logalleon/b3e7b8a604325daf8ea3cadcd2d88acd 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
var DwarfStatus; | |
(function (DwarfStatus) { | |
DwarfStatus[DwarfStatus["NO_JOB"] = 0] = "NO_JOB"; | |
DwarfStatus[DwarfStatus["NO_DESTINATION"] = 1] = "NO_DESTINATION"; | |
DwarfStatus[DwarfStatus["SLEEPING"] = 2] = "SLEEPING"; | |
DwarfStatus[DwarfStatus["ACTIVE"] = 3] = "ACTIVE"; | |
})(DwarfStatus || (DwarfStatus = {})); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment