/**
 * Provides constants for the project.
 */
export class Constants
{
    /**
     * The IDs of the players.
     *
     * @type {Partial<Record<CellOwner, string>>}
     */
    static PLAYER_NAMES = {
        r: "red",
        b: "blue"
    };
}