@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
20 lines • 688 B
TypeScript
export class PropertySetSerializationAdapter extends BinaryClassSerializationAdapter<any> {
constructor();
klass: typeof PropertySet;
version: number;
/**
*
* @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