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