UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

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