예제 #1
0
 public abstract bool Intersects(HitBox other);
예제 #2
0
 public void AddChild(HitBox child)
 {
     m_childs.Add(child);
 }
예제 #3
0
 public override bool Intersects(HitBox other)
 {
     return(other.Intersects(this));
 }