sc4
Version:
A command line utility for automating SimCity 4 modding tasks & modifying savegames
14 lines (13 loc) • 390 B
TypeScript
import type { dword } from 'sc4/types';
import { kFileType } from './symbols.js';
import type Pointer from './pointer.js';
import type Stream from './stream.js';
export default class NetworkManager {
static [kFileType]: 3381706054;
crc: dword;
mem: dword;
version: number;
pointers: Pointer[];
parse(rs: Stream): this;
toBuffer(): Uint8Array<ArrayBufferLike>;
}