2017-12-14 02:06:28 +00:00
|
|
|
"use strict";
|
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
|
class GameObjectLite {
|
|
|
|
|
constructor() {
|
|
|
|
|
this.IsAttachment = false;
|
|
|
|
|
}
|
|
|
|
|
hasNameValueEntry(key) {
|
2018-10-10 10:36:12 +01:00
|
|
|
return this.NameValue['AttachItemID'] !== undefined;
|
2017-12-14 02:06:28 +00:00
|
|
|
}
|
|
|
|
|
getNameValueEntry(key) {
|
|
|
|
|
if (this.NameValue['AttachItemID']) {
|
|
|
|
|
return this.NameValue['AttachItemID'].value;
|
|
|
|
|
}
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
exports.GameObjectLite = GameObjectLite;
|
|
|
|
|
//# sourceMappingURL=GameObjectLite.js.map
|