zz
This commit is contained in:
17
GlobalShared/OcTree/Data/IOcTreeData.cs
Normal file
17
GlobalShared/OcTree/Data/IOcTreeData.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user