Files
node-metaverse/dist/classes/interfaces/IObjectStore.d.ts

6 lines
163 B
TypeScript

import { IGameObject } from './IGameObject';
export interface IObjectStore {
getObjectsByParent(parentID: number): IGameObject[];
shutdown(): void;
}