Пример #1
0
 /// <summary>
 /// Returns whether or not the hitboxes that are passed through intersect
 /// </summary>
 /// <param name="h1"></param>
 /// <param name="h2"></param>
 /// <returns></returns>
 private bool CheckHitboxIntersect(Hitbox h1, Hitbox h2)
 {
     return(h1.CheckHitboxIntersect(h2));
 }