using System; using IwbZero.ToolCommon.StringModel; using WeEngine.Enum; using WeEngine.Packages; namespace WeEngine.Module.Runner { public class NoEvolutionRunnerModule : PackageRunnerModuleBase { public override PackageInfo PackageInfo { get; set; } public override bool Run(NodeBase node, OperationType operationType) { string answer = node.ExtendData.Answer; if (answer.IsEmpty()) { return false; } switch (operationType) { case OperationType.NeNext: break; case OperationType.NePrev: break; case OperationType.NeCommit: break; } return true; } public override bool Run(string id, OperationType operationType) { switch (operationType) { case OperationType.NeNext: break; case OperationType.NePrev: break; case OperationType.NeCommit: break; } return true; } } }