summaryrefslogtreecommitdiff
path: root/Thronefall_1_0/Thronefall/NGS.MeshFusionPro/ICombinedMeshMover.cs
blob: 05560a15b54bc6eb85b4177341a3807931bcacdd (plain)
1
2
3
4
5
6
7
8
9
10
using System.Collections.Generic;

namespace NGS.MeshFusionPro;

public interface ICombinedMeshMover
{
	void MoveParts(IList<PartMoveInfo> moveInfos);

	void ApplyData();
}