UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

18 lines 738 B
export class WaitForEventBehaviorSerializationAdapter extends BinaryClassSerializationAdapter { klass: typeof WaitForEventBehavior; /** * * @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