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