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