Create game state service placeholder class

issue-2
Garrett Mills 4 years ago
parent 00cff8f773
commit 69915705e1
Signed by: garrettmills
GPG Key ID: D2BF5FBA8298F246

@ -0,0 +1,10 @@
/**
* 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
Loading…
Cancel
Save