public Player(Location origin) : base(origin) { }
public Entity(Location origin) { this.origin = origin; }
public double getDistance(Location target) { return Math.Sqrt(Math.Pow(target.x - x, 2) + Math.Pow(target.y - y, 2)); }
public Planet(Location origin) : base(origin) { }