namespace GodotHostTest.Interfaces;
///
/// An object that keeps track of the score.
///
public interface IScore
{
///
/// A target has been hit.
///
void TargetHit();
///
/// A target has timed out.
///
void TargetTimedOut();
///
/// The current score.
///
public int Score { get; }
}