UNPKG

sc4

Version:

A command line utility for automating SimCity 4 modding tasks & modifying savegames

18 lines (17 loc) 516 B
import type { dword, uint32, word } from 'sc4/types'; import type Stream from './stream.js'; import { kFileType } from './symbols.js'; import Unknown from './unknown.js'; import type Pointer from './pointer.js'; export default class cSC43DRender { static [kFileType]: 3922076376; crc: dword; mem: dword; version: word; size: [uint32, uint32]; resolution: [uint32, uint32]; camera: Pointer; unknown: Unknown; parse(rs: Stream): void; toBuffer(): Uint8Array<ArrayBufferLike>; }