UNPKG

othello.js

Version:

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

14 lines (13 loc) 284 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.StoneStatus = void 0; /** * A status of a stone type. */ class StoneStatus { constructor(count) { this.count = count; // } } exports.StoneStatus = StoneStatus;