// updateVerbDocks.js
(function () {
/* global adventurejs A */
var p = adventurejs.Display.prototype;
/**
* Set verbs in verb docks.
* @method adventurejs.Display#updateVerbDocks
* @param {Object} properties
* @TODO this has no logic yet
*/
p.updateVerbDocks = function Display_updateVerbDocks(properties) {
// this.verbdocks.forEach(function(element){})
};
})();