sc4
Version:
A command line utility for automating SimCity 4 modding tasks & modifying savegames
17 lines (16 loc) • 542 B
TypeScript
import type { dword, word } from 'sc4/types';
import { kFileType } from './symbols.js';
import type Pointer from './pointer.js';
import type ItemIndex from './item-index.js';
import type ZoneDeveloper from './zone-developer.js';
import type Stream from './stream.js';
export default class PropManager {
static [kFileType]: 2844835088;
crc: dword;
mem: dword;
major: word;
itemIndex: Pointer<ItemIndex>;
zoneDeveloper: Pointer<ZoneDeveloper>;
parse(rs: Stream): void;
toBuffer(): Uint8Array<ArrayBufferLike>;
}