UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

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