IWorkflow.cs 349 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace StageController.StargeBase
  7. {
  8. public interface IMoveflow
  9. {
  10. bool ToCenter(object arg);
  11. bool OutStage(object arg);
  12. bool InStage(object arg);
  13. bool ResetStage(object arg);
  14. }
  15. }