8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
import {IGameObject} from './IGameObject';
|
|
|
|
export interface IObjectStore
|
|
{
|
|
getObjectsByParent(parentID: number): IGameObject[];
|
|
shutdown(): void;
|
|
}
|