// genders.js
(function () {
/* global AdventureJS A */
var p = AdventureJS.Dictionary.prototype;
/**
* Genders recognized by the parser.
* @var {Object} AdventureJS.Dictionary#genders
*/
p.genders = ["male", "female", "transgender", "nonbinary", "nonhuman"];
p.added_genders = [];
})();