public abstract void OnCollision(Objects other);
public override void OnCollision(Objects other) { //throw new NotImplementedException(); }
public bool IsCollidingWith(Objects other) { return(CollisionBox.IntersectsWith(other.CollisionBox)); }