isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
12 lines (11 loc) • 353 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
// -----
// Tests
// -----
var ObjectiveType;
(function (ObjectiveType) {
ObjectiveType[ObjectiveType["FOO"] = 0] = "FOO";
ObjectiveType[ObjectiveType["BAR"] = 1] = "BAR";
ObjectiveType[ObjectiveType["BAZ"] = 2] = "BAZ";
})(ObjectiveType || (ObjectiveType = {}));