示例#1
0
 public bool Intersects(Hitbox myHitbox, Hitbox otherHitbox)
 {
     return(myHitbox.Intersects(otherHitbox));
 }
示例#2
0
 public void AddHitBox(string name, Hitbox hitbox)
 {
     this.hitboxes.Add(name, hitbox);
 }
示例#3
0
 public void SetHitbox(string name, Hitbox hitbox)
 {
     this.hitboxes[name] = hitbox;
 }
示例#4
0
 public abstract bool Intersects(Hitbox other);