示例#1
0
 public void OnIntersect(IPhysical other)
 {
     if (other is Tile)
     {
         return;
     }
     Console.WriteLine(this.ToString() + "Collided with:" + other.ToString());
 }