isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
15 lines (14 loc) • 602 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PostPlayerRenderReordered = void 0;
const ISCFeature_1 = require("../../enums/ISCFeature");
const shouldFire_1 = require("../../shouldFire");
const CustomCallback_1 = require("../private/CustomCallback");
class PostPlayerRenderReordered extends CustomCallback_1.CustomCallback {
constructor() {
super();
this.featuresUsed = [ISCFeature_1.ISCFeature.PLAYER_REORDERED_CALLBACKS];
}
shouldFire = shouldFire_1.shouldFirePlayer;
}
exports.PostPlayerRenderReordered = PostPlayerRenderReordered;