UNPKG

sc4

Version:

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

21 lines (20 loc) 476 B
import type Stream from './stream.js'; import type WriteBuffer from './write-buffer.js'; type NetworkCrossingOptions = { type?: number; west?: number; north?: number; east?: number; south?: number; }; export default class NetworkCrossing { type: number; west: number; north: number; east: number; south: number; constructor(opts?: NetworkCrossingOptions); parse(rs: Stream): this; write(ws: WriteBuffer): this; } export {};