isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
16 lines • 633 B
TypeScript
import type { PostFirstFlip } from "../../callbacks/PostFirstFlip";
import type { PostFlip } from "../../callbacks/PostFlip";
import { Feature } from "../../private/Feature";
export declare class FlipDetection extends Feature {
v: {
run: {
/** We don't consider the case of a multiplayer game with more than one Tainted Lazarus. */
usedFlipAtLeastOnce: boolean;
};
};
private readonly postFlip;
private readonly postFirstFlip;
constructor(postFlip: PostFlip, postFirstFlip: PostFirstFlip);
private readonly postUseItemFlip;
}
//# sourceMappingURL=FlipDetection.d.ts.map