Esempio n. 1
0
 protected virtual bool IsNeighbourTo(BaseArea area)
 {
     return false;
 }
Esempio n. 2
0
 protected override bool IsNeighbourTo(BaseArea area)
 {
     throw new NotImplementedException();
 }
Esempio n. 3
0
 public virtual BaseArea Merge(BaseArea other)
 {
     return null;
 }
Esempio n. 4
0
 ///<summary>Összeolvasztja a példányt a kapott konstrukcióval.</summary>
 ///<param name="other">A másik konstrukció</param>
 ///<returns>Az összeolvasztás után kapott konstrukció</returns>
 public override BaseArea Merge(BaseArea other)
 {
     throw new NotImplementedException();
 }