diff options
Diffstat (limited to 'Thronefall_v1.0/Thronefall/NGS.MeshFusionPro/IAsyncCombinedMeshMover.cs')
-rw-r--r-- | Thronefall_v1.0/Thronefall/NGS.MeshFusionPro/IAsyncCombinedMeshMover.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Thronefall_v1.0/Thronefall/NGS.MeshFusionPro/IAsyncCombinedMeshMover.cs b/Thronefall_v1.0/Thronefall/NGS.MeshFusionPro/IAsyncCombinedMeshMover.cs new file mode 100644 index 0000000..07f0de8 --- /dev/null +++ b/Thronefall_v1.0/Thronefall/NGS.MeshFusionPro/IAsyncCombinedMeshMover.cs @@ -0,0 +1,10 @@ +using System.Collections.Generic; + +namespace NGS.MeshFusionPro; + +public interface IAsyncCombinedMeshMover : ICombinedMeshMover +{ + void MovePartsAsync(IList<PartMoveInfo> moveInfos); + + void FinishAsyncMoving(); +} |