xcom2charpool
Version:
Library for reading, manipulating, and managing XCOM 2 character pool binary files, supporting both browser and Node.js environments.
14 lines (13 loc) • 357 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BytePropertyValue = void 0;
/**
* Value object for ByteProperty preserving both type name and value.
*/
class BytePropertyValue {
constructor(type, value) {
this.type = type;
this.value = value;
}
}
exports.BytePropertyValue = BytePropertyValue;