示例#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));
 }