isaac-typescript-definitions
Version:
TypeScript definitions for The Binding of Isaac: Repentance.
12 lines • 341 B
TypeScript
/**
* Matches the `RoomDescriptor.DISPLAY_*` members of the `RoomDescriptor` class. In IsaacScript, we
* reimplement this as an enum instead, since it is cleaner.
*/
export declare enum RoomDescriptorDisplayType {
NONE = 0,
BOX = 1,
LOCK = 2,
ICON = 4,
ALL = 5
}
//# sourceMappingURL=RoomDescriptorDisplayType.d.ts.map