- Implement ScriptDialogReply thanks to Hintswen - Add a rudimentary object search - doesn't work fully yet because of the missing messages
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
import {ITreeBoundingBox} from './ITreeBoundingBox';
|
|
|
|
export interface IGameObject
|
|
{
|
|
rtreeEntry?: ITreeBoundingBox;
|
|
hasNameValueEntry(key: string): boolean;
|
|
getNameValueEntry(key: string): string;
|
|
}
|