using System; using System.Collections.Generic; using VRageMath; namespace Global.Shared.OcTree.Data { public interface IOcTreeData : IDisposable { long Id { get; } List ChildIds { get; } long Flags { get; } BoundingBoxD BoundingBox { get; } void Update(); void Recompute(); } }