base structure

This commit is contained in:
redglow
2026-07-17 09:59:07 +02:00
parent e560a743fb
commit 96fffb2f9e
25 changed files with 466 additions and 55 deletions
+3 -1
View File
@@ -6,7 +6,7 @@ using GodotHostTest.Interfaces;
namespace GodotHostTest.Game;
public partial class Score : Control
public partial class Score : Control, IScore
{
[Export] private AnimationPlayer _animationPlayer = null!;
[Export] private Label _label = null!;
@@ -34,4 +34,6 @@ public partial class Score : Control
{
_label.Text = $"Score: {_score}";
}
int IScore.Score => _score;
}