summaryrefslogtreecommitdiff
path: root/Thronefall_1_57/Thronefall/NGS.MeshFusionPro/JobsMovableMeshSTDFactory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_1_57/Thronefall/NGS.MeshFusionPro/JobsMovableMeshSTDFactory.cs')
-rw-r--r--Thronefall_1_57/Thronefall/NGS.MeshFusionPro/JobsMovableMeshSTDFactory.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/Thronefall_1_57/Thronefall/NGS.MeshFusionPro/JobsMovableMeshSTDFactory.cs b/Thronefall_1_57/Thronefall/NGS.MeshFusionPro/JobsMovableMeshSTDFactory.cs
deleted file mode 100644
index 36402f5..0000000
--- a/Thronefall_1_57/Thronefall/NGS.MeshFusionPro/JobsMovableMeshSTDFactory.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-namespace NGS.MeshFusionPro;
-
-public class JobsMovableMeshSTDFactory : IMovableCombinedMeshFactory
-{
- private IMeshToolsFactory _tools;
-
- public JobsMovableMeshSTDFactory(IMeshToolsFactory tools)
- {
- _tools = tools;
- }
-
- public CombinedMesh CreateMovableMesh(out ICombinedMeshMover mover)
- {
- CombinedMesh<MeshDataNativeArraysSTD> combinedMesh = new CombinedMesh<MeshDataNativeArraysSTD>(_tools.CreateMeshCombiner(), _tools.CreateMeshCutter());
- mover = new JobsMeshMoverSTD(combinedMesh.MeshDataInternal);
- return combinedMesh;
- }
-}