unpak.js
Version:
Modern TypeScript library for reading Unreal Engine pak files and assets, inspired by CUE4Parse
19 lines • 469 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FAssetRegistryTagImpl = void 0;
/**
* Asset Registry Tag implementation
*/
class FAssetRegistryTagImpl {
key;
value;
constructor(key, value) {
this.key = key;
this.value = value;
}
toString() {
return `${this.key}=${this.value}`;
}
}
exports.FAssetRegistryTagImpl = FAssetRegistryTagImpl;
//# sourceMappingURL=FAssetRegistryTag.js.map