isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
10 lines (9 loc) • 427 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AmbushType = void 0;
/** This is used by the `POST_AMBUSH_STARTED` and `POST_AMBUSH_FINISHED` custom callbacks. */
var AmbushType;
(function (AmbushType) {
AmbushType[AmbushType["CHALLENGE_ROOM"] = 0] = "CHALLENGE_ROOM";
AmbushType[AmbushType["BOSS_RUSH"] = 1] = "BOSS_RUSH";
})(AmbushType || (exports.AmbushType = AmbushType = {}));