UNPKG

243 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.Range = void 0;
4class Range {
5 constructor(x, y) {
6 this.position = {
7 x: x,
8 y: y,
9 };
10 }
11}
12exports.Range = Range;