// objective_pronouns.js
(function () {
/* global adventurejs A */
var p = adventurejs.Dictionary.prototype;
/**
* These objective pronouns are recognized by the parser.
* @var {Object} adventurejs.Dictionary#objective_pronouns
*/
p.objective_pronouns = ["me", "him", "her", "it", "them"];
p.added_objective_pronouns = {};
})();