UNPKG

sc4

Version:

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

16 lines (15 loc) 478 B
import type { dword } from 'sc4/types'; import type Stream from './stream.js'; import { kFileType } from './symbols.js'; import type Pointer from './pointer.js'; import type Building from './building.js'; export default class ParkManager { static [kFileType]: 2856314556; crc: dword; mem: dword; version: string; buildings: Pointer<Building>[]; buildings2: Pointer<Building>[]; parse(rs: Stream): void; toBuffer(): Uint8Array<ArrayBufferLike>; }