"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Coords = void 0;
exports.Coords = {
toSquareIndex(x, y) {
return ((y * 8) + x);
},
toX(squareIndex) {
return Math.floor(squareIndex % 8);
},
toY(squareIndex) {
return Math.floor(squareIndex / 8);
}
};