NonEvolutionRunner.cs 661 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using WeEngine.Enum;
  3. using WeEngine.Packages;
  4. using WeEngine.Strategy.Runner;
  5. namespace WeEngine.Module
  6. {
  7. public class NonEvolutionRunner : IRunnerStrategy
  8. {
  9. public PackageNode PackageInfo { get; set; }
  10. public bool Run(string path, OperationType operationType)
  11. {
  12. throw new NotImplementedException();
  13. }
  14. public void NodeChangeEventHandle(NodeBase node, NodeState state)
  15. {
  16. throw new NotImplementedException();
  17. }
  18. public bool Run(NodeBase node, OperationType operationType)
  19. {
  20. throw new NotImplementedException();
  21. }
  22. }
  23. }