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