engagementgamelab/CivicSeed

View on GitHub
client/code/game/game.flags.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict'

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

    flags.js

    - Instantiates a Flagger class on the main $game object to manage
      game state flags.

 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

var Flagger = require('/class.flagger')

// Create an instance of the Flagger class for the main $game object.
module.exports = (function () {
  return new Flagger()
}())