UNPKG

othello.js

Version:

An simple easy-to-use othello game implementation with TypeScript.

16 lines (15 loc) 321 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CellStatus = void 0; /** * The status of a cell. */ class CellStatus { constructor(type, x, y) { this.type = type; this.x = x; this.y = y; // } } exports.CellStatus = CellStatus;