// LoginManager.js
(function () {
/* global AdventureJS A */
/**
* @class AdventureJS.LoginManager
* @ajsnavheading EngineClasses
* @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;
})();