20 lines
444 B
C#
20 lines
444 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CPSO;
|
|
using CaeModel;
|
|
using CaeMesh;
|
|
using CaeGlobals;
|
|
|
|
|
|
namespace CPSO.Commands
|
|
{
|
|
interface ICommandAsynchronous
|
|
{
|
|
// Methods
|
|
bool ExecuteSynchronous(Controller receiver);
|
|
}
|
|
}
|