sc4
Version:
A command line utility for automating SimCity 4 modding tasks & modifying savegames
14 lines (13 loc) • 399 B
TypeScript
import { kFileType } from './symbols.js';
import type { dword, word } from 'sc4/types';
import type Pointer from './pointer.js';
import type Stream from './stream.js';
export default class cSTETerrain {
static [kFileType]: 3918501157;
crc: dword;
mem: dword;
version: word;
terrainView: Pointer | null;
parse(rs: Stream): void;
toBuffer(): Uint8Array<ArrayBufferLike>;
}