コード例 #1
0
ファイル: HitBox.cs プロジェクト: Arriven/GameEngine
 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));
 }