@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
20 lines • 679 B
TypeScript
export class GUIElementSerializationAdapter extends BinaryClassSerializationAdapter<any> {
constructor();
klass: typeof GUIElement;
version: number;
/**
*
* @param {BinaryBuffer} buffer
* @param {GUIElement} value
*/
serialize(buffer: BinaryBuffer, value: GUIElement): void;
/**
*
* @param {BinaryBuffer} buffer
* @param {GUIElement} value
*/
deserialize(buffer: BinaryBuffer, value: GUIElement): void;
}
import { BinaryClassSerializationAdapter } from "../storage/binary/BinaryClassSerializationAdapter.js";
import GUIElement from "./GUIElement.js";
//# sourceMappingURL=GUIElementSerializationAdapter.d.ts.map