Ejemplo n.º 1
0
 public SimpleVertex(AbstractBlock ab)
 {
     UniqID          = ab.UniqueID.ToString();
     Name            = ab.DebugName ?? ab.GetType().Name;
     LastObject      = ab.LastData;
     debugStringList = ab.DebugStrings;
 }
Ejemplo n.º 2
0
 public override bool IsAllowBlockType(AbstractBlock target)
 {
     if (target == null) return false;
     if (target.GetType() == typeof(BlockConnect)) return true;
     return true;
 }