| 1234567891011121314151617181920212223242526 |
- using System;
- using WeEngine.Enum;
- using WeEngine.Packages;
- using WeEngine.Strategy.Runner;
- namespace WeEngine.Module
- {
- public class NonEvolutionRunner : IRunnerStrategy
- {
- public PackageNode PackageInfo { get; set; }
- public bool Run(string path, OperationType operationType)
- {
- throw new NotImplementedException();
- }
- public void NodeChangeEventHandle(NodeBase node, NodeState state)
- {
- throw new NotImplementedException();
- }
- public bool Run(NodeBase node, OperationType operationType)
- {
- throw new NotImplementedException();
- }
- }
- }
|