]> git.cworth.org Git - lmno-server/blob - game.js
Add new game.js with a new parent class Game
[lmno-server] / game.js
1 /* Base class providing common code for game engine implementations. */
2 class Game {
3   constructor(name) {
4     this.name = name;
5   }
6 }
7
8 module.exports = Game;