UNPKG

@etothepii/satisfactory-file-parser

Version:

A file parser for satisfactory files. Includes save files and blueprint files.

15 lines (14 loc) 411 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SatisfactorySave = void 0; class SatisfactorySave { constructor(name, header) { this.gridHash = [0, 0, 0, 0]; this.grids = {}; this.levels = []; this.trailingCollectedObjects = []; this.name = name; this.header = header; } } exports.SatisfactorySave = SatisfactorySave;