blob: 07f0de8829c07a24765a0d2f6cbc3699500000df (
plain)
1
2
3
4
5
6
7
8
9
10
|
using System.Collections.Generic;
namespace NGS.MeshFusionPro;
public interface IAsyncCombinedMeshMover : ICombinedMeshMover
{
void MovePartsAsync(IList<PartMoveInfo> moveInfos);
void FinishAsyncMoving();
}
|