예제 #1
0
파일: Edge.cs 프로젝트: Pylair/MeleeCombat
 public virtual bool touches(BaseShape other)
 {
     return(false);
 }
예제 #2
0
파일: Edge.cs 프로젝트: Pylair/MeleeCombat
 public virtual void setNeighbor(BaseShape other)
 {
     neighbors.Add(other);
     other.neighbors.Add(this);
 }