// GlobalExitUp.js
(function () {
/*global adventurejs A*/
"use strict";
/**
* @augments {adventurejs.Exit}
* @class global_up
* @ajsconstruct MyGame.createGlobalExits({ "name": "global_up", [...] });
* @ajsconstructedby adventurejs.Game#createGlobalExits
* @hideconstructor
* @ajsinstanceof Exit
* @ajsmodifiedby adventurejs.Game#setGlobalDescriptions
* @ajsnavheading GlobalExits
* @ajsnode game.world.global_up
* @tutorial NextSteps_GlobalScenery
* @summary A global exit.
* @ajsglobal GlobalExit
*/
A.GlobalAssets.Exits.push({
direction: "up",
descriptions: { look: "$(We) can't see any way up from here." },
});
})();