Пример #1
0
 // Returns true if we can merge other with this
 public bool CanMerge(Block other)
 {
     return(CanAppend(other) && other.IsOnlySource(this));
 }
Пример #2
0
		// Returns true if we can merge other with this
		public bool CanMerge(Block other) {
			return CanAppend(other) && other.IsOnlySource(this);
		}