UNPKG

@randomgeekdom/rollbard

Version:

Libraries and generators for fantasy/scifi worldbuilding

23 lines 678 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Gender_1 = require("../Enumerations/Gender"); var NPC = /** @class */ (function () { function NPC() { this.FirstName = ""; this.LastName = ""; this.Gender = Gender_1.Gender.Female; this.Hometown = ""; this.Title = ""; this.Job = ""; } Object.defineProperty(NPC.prototype, "Name", { get: function () { return this.FirstName + " " + this.LastName; }, enumerable: false, configurable: true }); return NPC; }()); exports.default = NPC; //# sourceMappingURL=NPC.js.map