Add ObjectStoreLite to reduce memory footprint if the full object data is not needed

This commit is contained in:
Casper Warden
2017-12-14 02:06:28 +00:00
parent 9c6375a917
commit 60e300f052
58 changed files with 1525 additions and 62 deletions

View File

@@ -0,0 +1,7 @@
import {IGameObject} from './IGameObject';
export interface IObjectStore
{
getObjectsByParent(parentID: number): IGameObject[];
shutdown(): void;
}