ConnectForce/src/js/Constants.js

15 lines
249 B
JavaScript

/**
* 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"
};
}