UNPKG

isaacscript-common

Version:

Helper functions and features for IsaacScript mods.

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