nodegame-game-template
Version:
Template files for a standard nodeGame game
20 lines (15 loc) • 416 B
JavaScript
/**
* # Phantom type implementation of the game stages
* Copyright(c) {YEAR} {AUTHOR} <{AUTHOR_EMAIL}>
* MIT Licensed
*
* http://www.nodegame.org
* ---
*/
var ngc = require('nodegame-client');
var stepRules = ngc.stepRules;
var constants = ngc.constants;
module.exports = function(treatmentName, settings, stager, setup, gameRoom) {
// Must implement the stages here.
// ...
};