Files
QuartZ-dump/GlobalShared/OcTree/Data/IOcTreeData.cs
2024-12-29 21:15:58 +01:00

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();
}
}