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