UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

20 lines 674 B
export class TransformSerializationAdapter extends BinaryClassSerializationAdapter<any> { constructor(); klass: typeof Transform; version: number; /** * * @param {BinaryBuffer} buffer * @param {Transform} value */ serialize(buffer: BinaryBuffer, value: Transform): void; /** * * @param {BinaryBuffer} buffer * @param {Transform} value */ deserialize(buffer: BinaryBuffer, value: Transform): void; } import { BinaryClassSerializationAdapter } from "../storage/binary/BinaryClassSerializationAdapter.js"; import { Transform } from "./Transform.js"; //# sourceMappingURL=TransformSerializationAdapter.d.ts.map