UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

15 lines (14 loc) 597 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PostGameStartedReordered = void 0; const ISCFeature_1 = require("../../enums/ISCFeature"); const shouldFire_1 = require("../../shouldFire"); const CustomCallback_1 = require("../private/CustomCallback"); class PostGameStartedReordered extends CustomCallback_1.CustomCallback { constructor() { super(); this.featuresUsed = [ISCFeature_1.ISCFeature.GAME_REORDERED_CALLBACKS]; } shouldFire = shouldFire_1.shouldFireBoolean; } exports.PostGameStartedReordered = PostGameStartedReordered;