// unsetWidgets.js
(function () {
/* global AdventureJS A */
var p = AdventureJS.Display.prototype;
/**
* Unset widgets.
* @method AdventureJS.Display#unsetWidgets
* @param {Object} properties
*/
p.unsetWidgets = function Display_unsetWidgets(properties) {
this.widgets.forEach(function (widget) {});
};
})();