コード例 #1
0
ファイル: Shape.cs プロジェクト: hermes-jr/gb-lesson-snake
 internal bool IsHit(Point point)
 {
     foreach (var p in this.plist)
     {
         if (point.Hits(p))
         {
             return true;
         }
     }
     return false;
 }