UNPKG

@evitcastudio/kit

Version:

A single-player/multiplayer framework for the Vylocity Game Engine.

13 lines 440 B
import type { EmitterEvent, Listener } from '../types/shared-types'; import type { KitPlugin } from '../plugins/kit-plugin'; export declare class EventEmitter { private listener; private plugin; constructor(pListener: Listener, pPlugin: KitPlugin); /** * Emit an event to all listeners. * @param pEvent - The event to emit. */ emit(pEvent: EmitterEvent): void; } //# sourceMappingURL=event-system.d.ts.map