- Implement ScriptDialogReply thanks to Hintswen - Add a rudimentary object search - doesn't work fully yet because of the missing messages
8 lines
167 B
TypeScript
8 lines
167 B
TypeScript
import {BBox} from 'rbush-3d/dist';
|
|
import {IGameObject} from './IGameObject';
|
|
|
|
export interface ITreeBoundingBox extends BBox
|
|
{
|
|
gameObject: IGameObject;
|
|
}
|