summaryrefslogtreecommitdiff
path: root/Thronefall_1_57/Decompile/NGS.MeshFusionPro/SimpleToolsLWFactory.cs
blob: cedbde2f53bd88421e59d0c0f6d911b4a274b75b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace NGS.MeshFusionPro;

public class SimpleToolsLWFactory : IMeshToolsFactory
{
	public IMeshCombiner CreateMeshCombiner()
	{
		return new MeshCombinerSimpleLW();
	}

	public IMeshCutter CreateMeshCutter()
	{
		return new MeshCutterSimpleLW();
	}
}