17 lines
349 B
C#
17 lines
349 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using VRageMath;
|
|
|
|
namespace Global.Shared.OcTree.Data
|
|
{
|
|
public interface IOcTreeData : IDisposable
|
|
{
|
|
long Id { get; }
|
|
List<long> ChildIds { get; }
|
|
long Flags { get; }
|
|
BoundingBoxD BoundingBox { get; }
|
|
|
|
void Update();
|
|
void Recompute();
|
|
}
|
|
} |