sc4
Version:
A command line utility for automating SimCity 4 modding tasks & modifying savegames
21 lines (20 loc) • 564 B
TypeScript
import type { dword } from 'sc4/types';
import type Stream from './stream.js';
import { kFileType } from './symbols.js';
import Unknown from './unknown.js';
import SimulatorDate from './simulator-date.js';
export default class cSC4Simulator {
static [kFileType]: 697352677;
crc: dword;
mem: dword;
version: string;
hoursPerDay: dword;
dayOfYear: dword;
weekOfYear: dword;
monthOfYear: dword;
year: dword;
date: SimulatorDate;
unknown: Unknown;
parse(rs: Stream): void;
toBuffer(): Uint8Array<ArrayBufferLike>;
}