UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

18 lines 629 B
export class TransformSerializationAdapter extends BinaryClassSerializationAdapter { klass: typeof Transform; /** * * @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