summaryrefslogtreecommitdiff
path: root/Thronefall_1_57/Decompile/NGS.MeshFusionPro/SimpleToolsLWFactory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_1_57/Decompile/NGS.MeshFusionPro/SimpleToolsLWFactory.cs')
-rw-r--r--Thronefall_1_57/Decompile/NGS.MeshFusionPro/SimpleToolsLWFactory.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Thronefall_1_57/Decompile/NGS.MeshFusionPro/SimpleToolsLWFactory.cs b/Thronefall_1_57/Decompile/NGS.MeshFusionPro/SimpleToolsLWFactory.cs
new file mode 100644
index 0000000..cedbde2
--- /dev/null
+++ b/Thronefall_1_57/Decompile/NGS.MeshFusionPro/SimpleToolsLWFactory.cs
@@ -0,0 +1,14 @@
+namespace NGS.MeshFusionPro;
+
+public class SimpleToolsLWFactory : IMeshToolsFactory
+{
+ public IMeshCombiner CreateMeshCombiner()
+ {
+ return new MeshCombinerSimpleLW();
+ }
+
+ public IMeshCutter CreateMeshCutter()
+ {
+ return new MeshCutterSimpleLW();
+ }
+}