import { TActor } from '../../Actor'; import { BBox } from 'rbush'; import { TSpatialCellId } from './TSpatialCellId'; export type TSpatialCell = BBox & Readonly<{ id: TSpatialCellId; }> & { objects: Array; version: number; };