/** * 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