isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
17 lines • 760 B
TypeScript
import type { PlayerType } from "isaac-typescript-definitions";
import { ModCallbackCustom } from "../../enums/ModCallbackCustom";
import { shouldFirePlayer } from "../../shouldFire";
import type { PlayerIndex } from "../../types/PlayerIndex";
import { DefaultMap } from "../DefaultMap";
import { CustomCallback } from "../private/CustomCallback";
export declare class PostPlayerChangeType extends CustomCallback<ModCallbackCustom.POST_PLAYER_CHANGE_TYPE> {
v: {
run: {
playersCharacterMap: DefaultMap<PlayerIndex, PlayerType, [character: PlayerType]>;
};
};
constructor();
protected shouldFire: typeof shouldFirePlayer;
private readonly postPEffectReordered;
}
//# sourceMappingURL=PostPlayerChangeType.d.ts.map