summaryrefslogtreecommitdiff
path: root/Thronefall_1_57/Decompile/NGS.MeshFusionPro/IBinaryTreeNode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_1_57/Decompile/NGS.MeshFusionPro/IBinaryTreeNode.cs')
-rw-r--r--Thronefall_1_57/Decompile/NGS.MeshFusionPro/IBinaryTreeNode.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/Thronefall_1_57/Decompile/NGS.MeshFusionPro/IBinaryTreeNode.cs b/Thronefall_1_57/Decompile/NGS.MeshFusionPro/IBinaryTreeNode.cs
deleted file mode 100644
index c25beae..0000000
--- a/Thronefall_1_57/Decompile/NGS.MeshFusionPro/IBinaryTreeNode.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using UnityEngine;
-
-namespace NGS.MeshFusionPro;
-
-public interface IBinaryTreeNode
-{
- Vector3 Center { get; }
-
- Vector3 Size { get; }
-
- Bounds Bounds { get; }
-
- bool HasChilds { get; }
-
- bool IsLeaf { get; }
-
- IBinaryTreeNode GetLeft();
-
- IBinaryTreeNode GetRight();
-}