23 lines
490 B
C#
23 lines
490 B
C#
using Autodesk.Revit.Attributes;
|
|
using Nice3point.Revit.Toolkit.External;
|
|
using ShrlAlgoToolkit.RevitAddins.Assists;
|
|
|
|
namespace ShrlAlgoToolkit.RevitAddins.RvMEP;
|
|
|
|
[Transaction(TransactionMode.Manual)]
|
|
public class ClashResolveCmd : ExternalCommand
|
|
{
|
|
public override void Execute()
|
|
{
|
|
try
|
|
{
|
|
WinDialogHelper.ShowModeless<ClashResolveView>(new ClashResolveViewModel());
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
throw;
|
|
}
|
|
}
|
|
}
|