Files
node-metaverse/dist/classes/interfaces/ITreeBoundingBox.d.ts

6 lines
168 B
TypeScript
Raw Normal View History

import { BBox } from 'rbush-3d/dist';
import { IGameObject } from './IGameObject';
export interface ITreeBoundingBox extends BBox {
gameObject: IGameObject;
}