// getSubject.js
(function () {
/*global adventurejs A*/
var p = adventurejs.Game.prototype;
/**
* Convenience method to get the current subject asset.
* Usually this would be the player, unless player has
* input something like "Floyd, go east"
* @method adventurejs.Game#getSubject
* @memberOf adventurejs.Game
* @returns {Object}
*/
p.getSubject = p.$subject = function Game_getSubject() {
return this.getInput().getSubject();
};
})();