@logic-pad/core
Version:
26 lines (25 loc) • 704 B
TypeScript
export default class TileConnections {
[y: number]: {
[x: number]: boolean;
};
constructor();
get topLeft(): boolean;
set topLeft(value: boolean);
get top(): boolean;
set top(value: boolean);
get topRight(): boolean;
set topRight(value: boolean);
get left(): boolean;
set left(value: boolean);
get center(): boolean;
set center(value: boolean);
get right(): boolean;
set right(value: boolean);
get bottomLeft(): boolean;
set bottomLeft(value: boolean);
get bottom(): boolean;
set bottom(value: boolean);
get bottomRight(): boolean;
set bottomRight(value: boolean);
equals(other: TileConnections): boolean;
}