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