Files
node-metaverse/dist/classes/interfaces/IGameObject.d.ts
Casper Warden 9eee7f9716 - Implement 3D space rtree-based indexing in the Full ObjectStore
- Implement ScriptDialogReply thanks to Hintswen
- Add a rudimentary object search - doesn't work fully yet because of the missing messages
2018-10-12 17:31:14 +01:00

7 lines
218 B
TypeScript

import { ITreeBoundingBox } from './ITreeBoundingBox';
export interface IGameObject {
rtreeEntry?: ITreeBoundingBox;
hasNameValueEntry(key: string): boolean;
getNameValueEntry(key: string): string;
}