You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
231 B

/**
* Singleton service for managing the state of the game.
*/
export class GameStateService {
}
// Export a single instance, so it can be shared by all files
const game_state = new GameStateService()
export default game_state