feat: initial import

This commit is contained in:
redglow
2026-07-11 10:54:02 +02:00
commit e560a743fb
55 changed files with 993 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
namespace GodotHostTest.Interfaces;
/// <summary>
/// An object that keeps track of the score.
/// </summary>
public interface IScore
{
/// <summary>
/// A target has been hit.
/// </summary>
void TargetHit();
/// <summary>
/// A target has timed out.
/// </summary>
void TargetTimedOut();
/// <summary>
/// The current score.
/// </summary>
public int Score { get; }
}