Files
node-metaverse/dist/classes/ObjectStoreLite.d.ts
Casper Warden 572cd576de Fix lint issues
2018-10-10 10:36:12 +01:00

26 lines
966 B
TypeScript

/// <reference types="node" />
import { Circuit } from './Circuit';
import { Agent } from './Agent';
import { ClientEvents } from './ClientEvents';
import { IObjectStore } from './interfaces/IObjectStore';
import { GameObjectLite } from './GameObjectLite';
import { NameValue } from './NameValue';
import { BotOptionFlags } from '..';
export declare class ObjectStoreLite implements IObjectStore {
private circuit;
private agent;
private objects;
private objectsByUUID;
private objectsByParent;
private clientEvents;
private options;
constructor(circuit: Circuit, agent: Agent, clientEvents: ClientEvents, options: BotOptionFlags);
deleteObject(objectID: number): void;
readExtraParams(buf: Buffer, pos: number, o: GameObjectLite): number;
getObjectsByParent(parentID: number): GameObjectLite[];
parseNameValues(str: string): {
[key: string]: NameValue;
};
shutdown(): void;
}