UNPKG

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) 376 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.StructPropertyValue = void 0; /** * Value wrapper for structured properties carrying the struct type and payload. */ class StructPropertyValue { constructor(type, value) { this.type = type; this.value = value; } } exports.StructPropertyValue = StructPropertyValue;