// createDock.js
(function () {
/* global AdventureJS A */
var p = AdventureJS.Game.prototype;
/**
* <strong>createDock</strong> is an alias to method
* game.display.createDock()
* @memberOf AdventureJS.Game
* @method AdventureJS.Game#createDock
* @param {Object} properties A generic object with properties used to construct the verb dock.
* @returns {Object} A new verb dock object.
*/
p.createDock = function Game_createDock(properties) {
return this.display.createDock(properties);
};
})();