diff options
Diffstat (limited to 'Thronefall_v1.57/Thronefall/NGS.MeshFusionPro/SimpleToolsSTDFactory.cs')
-rw-r--r-- | Thronefall_v1.57/Thronefall/NGS.MeshFusionPro/SimpleToolsSTDFactory.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Thronefall_v1.57/Thronefall/NGS.MeshFusionPro/SimpleToolsSTDFactory.cs b/Thronefall_v1.57/Thronefall/NGS.MeshFusionPro/SimpleToolsSTDFactory.cs new file mode 100644 index 0000000..ee1ce77 --- /dev/null +++ b/Thronefall_v1.57/Thronefall/NGS.MeshFusionPro/SimpleToolsSTDFactory.cs @@ -0,0 +1,14 @@ +namespace NGS.MeshFusionPro; + +public class SimpleToolsSTDFactory : IMeshToolsFactory +{ + public IMeshCombiner CreateMeshCombiner() + { + return new MeshCombinerSimpleSTD(); + } + + public IMeshCutter CreateMeshCutter() + { + return new MeshCutterSimpleSTD(); + } +} |