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