2020-01-06 12:10:40 +00:00
|
|
|
import { BBox } from 'rbush-3d/dist';
|
|
|
|
|
import { GameObject } from '../public/GameObject';
|
2018-10-12 17:31:14 +01:00
|
|
|
|
|
|
|
|
export interface ITreeBoundingBox extends BBox
|
|
|
|
|
{
|
2018-10-19 16:30:09 +01:00
|
|
|
gameObject: GameObject;
|
2018-10-12 17:31:14 +01:00
|
|
|
}
|