Files
basic-computer-games/86_Target/csharp/Target/Explosion.cs
Chris Reuter d26dbf036a Removed spaces from top-level directory names.
Spaces tend to cause annoyances in a Unix-style shell environment.
This change fixes that.
2021-11-21 18:30:21 -05:00

23 lines
623 B
C#

namespace Target
{
internal class Explosion
{
private readonly Point _position;
public Explosion(Point position, Offset targetOffset)
{
_position = position;
FromTarget = targetOffset;
DistanceToTarget = targetOffset.Distance;
}
public Point Position => _position;
public Offset FromTarget { get; }
public float DistanceToTarget { get; }
public string GetBearing() => _position.GetBearing();
public bool IsHit => DistanceToTarget <= 20;
public bool IsTooClose => _position.Distance < 20;
}
}