11 lines
237 B
TypeScript
11 lines
237 B
TypeScript
|
import { Rectangle } from "../rects/rectangles";
|
||
|
|
||
|
export class Door {
|
||
|
public day: number;
|
||
|
public readonly position: Rectangle;
|
||
|
|
||
|
constructor(day: number, position: Rectangle) {
|
||
|
this.day = day;
|
||
|
this.position = position;
|
||
|
}
|
||
|
}
|