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