isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
14 lines • 607 B
TypeScript
import { RoomShape } from "isaac-typescript-definitions";
interface LRoomRectangles {
readonly verticalTopLeft: Readonly<Vector>;
readonly verticalBottomRight: Readonly<Vector>;
readonly horizontalTopLeft: Readonly<Vector>;
readonly horizontalBottomRight: Readonly<Vector>;
}
/**
* "Vector(0, 0)" corresponds to the top left tile of a room, not including the walls. (The top-left
* wall would be at "Vector(-1, -1)".)
*/
export declare const L_ROOM_SHAPE_TO_RECTANGLES: Readonly<Partial<Record<RoomShape, LRoomRectangles>>>;
export {};
//# sourceMappingURL=LRoomShapeToRectangles.d.ts.map