sc4
Version:
A command line utility for automating SimCity 4 modding tasks & modifying savegames
16 lines (15 loc) • 425 B
TypeScript
import type { dword, float, word } from 'sc4/types';
import type Stream from './stream.js';
import { kFileType } from './symbols.js';
import Unknown from './unknown.js';
export default class TerrainBox {
static [kFileType]: 2324817891;
major: word;
xSize: dword;
zSize: dword;
minY: float;
maxY: float;
unknown: Unknown;
parse(rs: Stream): void;
toBuffer(): Uint8Array<ArrayBufferLike>;
}