private void Click()
 {
     var values = Enum.GetValues(typeof(ConnectiveType));
     ConnectiveType = (ConnectiveType)values.GetValue(((int)ConnectiveType + 1) % values.Length);
     _label.text = ConnectiveType.GetText();
 }
예제 #2
0
 public RuleElementDefiniton(Connective connective)
 {
     Type = ExpressionElementType.Connective;
     ConnectiveType = connective.Type;
 }