Files
node-metaverse/lib/classes/interfaces/IObjectStore.ts

8 lines
164 B
TypeScript
Raw Normal View History

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