//GlobalSouthwestWall.js
(function () {
/*global adventurejs A*/
"use strict";
/**
* @ajsnode game.world.global_southwest_wall
* @augments {adventurejs.Wall}
* @class global_southwest_wall
* @ajsconstruct MyGame.createGlobalWalls({ "name": "global_southwest_wall", [...] });
* @ajsconstructedby adventurejs.Game#createGlobalWalls
* @hideconstructor
* @ajsinstanceof Wall
* @ajsnavheading GlobalWalls
* @summary A global wall.
* @tutorial NextSteps_GlobalScenery
*/
A.GlobalAssets.Walls.push({
direction: "southwest",
descriptions: {
look: "$(We) see nothing special about the southwest wall. ",
},
enabled: false,
});
})();