UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

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