// LoginManager.js
(function () {
/*global adventurejs A*/
/**
* @class adventurejs.LoginManager
* @ajsnavheading FrameworkReference
* @param {Game} game A reference to the game instance.
* @summary Manage user login to adventurejs.com.
* @todo Everything.
* @classdesc
* <p>
* <strong>LoginManager</strong> is a (placeholder for a)
* special class to be constructed by
* {@link adventurejs.Game|Game},
* and used to manage user login to accounts on
* <a href="https://adventurejs.com">adventurejs.com</a>
* </p>
*/
class LoginManager {
constructor(game) {
this.game = game;
}
}
adventurejs.LoginManager = LoginManager;
})();