コード例 #1
0
ファイル: Robot.cs プロジェクト: ShelbyBoss/Schule
 public bool HitInRadius(Point aMp)
 {
     if (VC.Distance(aMp, Pos.AsPoint) > 20)
     {
         return(false);
     }
     return(true);
 }