// linkComponents.js
(function () {
/* global AdventureJS A */
var p = AdventureJS.Assets.Tangible.prototype;
/**
* linkComponents does the bulk of the work for
* <a href="#registerComponents">registerComponents</a>. The base
* method defined in Tangible is blank. Subclasses that
* can make use of it will override the method as needed.
* @memberOf AdventureJS.Assets.Tangible
* @method AdventureJS.Assets.Tangible#linkComponents
*/
p.linkComponents = function Tangible_linkComponents() {
// customize per class
};
})();