// aspects.js
(function () {
/*global adventurejs A*/
var p = adventurejs.Dictionary.prototype;
/**
* Prepositions that are recognized as tangible aspects.
* @var {Object} adventurejs.Dictionary#aspects
*/
p.aspects = [
"attached",
"behind",
"in",
"on",
"under",
"worn",
"hung",
"tied",
];
// out? off?
})();