Beispiel #1
0
 public bool IsCompatibleWith(LogicSlot otherLogicSlot)
 {
     return(otherLogicSlot != null &&
            otherLogicSlot.Owner != Owner &&
            otherLogicSlot.isInputSlot != isInputSlot &&
            ((isInputSlot
                ? otherLogicSlot.IsCompatibleWithInputSlotType(ValueType)
                : IsCompatibleWithInputSlotType(otherLogicSlot.ValueType))));
 }