UNPKG

126 BJavaScriptView Raw
1export class Range {
2 constructor(x, y) {
3 this.position = {
4 x: x,
5 y: y,
6 };
7 }
8}