Add ObjectStoreLite to reduce memory footprint if the full object data is not needed
This commit is contained in:
7
lib/classes/interfaces/IObjectStore.ts
Normal file
7
lib/classes/interfaces/IObjectStore.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import {IGameObject} from './IGameObject';
|
||||
|
||||
export interface IObjectStore
|
||||
{
|
||||
getObjectsByParent(parentID: number): IGameObject[];
|
||||
shutdown(): void;
|
||||
}
|
||||
Reference in New Issue
Block a user