UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

18 lines 643 B
export class PropertySetSerializationAdapter extends BinaryClassSerializationAdapter { klass: typeof PropertySet; /** * * @param {BinaryBuffer} buffer * @param {PropertySet} value */ serialize(buffer: BinaryBuffer, value: PropertySet): void; /** * * @param {BinaryBuffer} buffer * @param {PropertySet} value */ deserialize(buffer: BinaryBuffer, value: PropertySet): void; } import { BinaryClassSerializationAdapter } from "../storage/binary/BinaryClassSerializationAdapter.js"; import PropertySet from "./PropertySet.js"; //# sourceMappingURL=PropertySetSerializationAdapter.d.ts.map