advent22/ui/src/components/door_map/calendar.ts

11 lines
230 B
TypeScript
Raw Normal View History

2023-02-01 16:53:24 +00:00
import { Rectangle } from "../rects/rectangles";
export class Door {
2023-02-02 14:12:44 +00:00
public day?: number;
public position: Rectangle;
2023-02-01 16:53:24 +00:00
2023-02-02 14:12:44 +00:00
constructor(position: Rectangle, day?: number) {
2023-02-01 16:53:24 +00:00
this.position = position;
2023-02-02 14:12:44 +00:00
this.day = day;
2023-02-01 16:53:24 +00:00
}
}