UNPKG

xcom2charpool

Version:

Library for reading, manipulating, and managing XCOM 2 character pool binary files, supporting both browser and Node.js environments.

13 lines (12 loc) 305 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IntProperty = void 0; class IntProperty { static from(reader, name, size) { return reader.int32(); } static to(target, value) { target.int32(value); } } exports.IntProperty = IntProperty;