refactor: Cleaned up score view interface

This commit is contained in:
Gerard Gascón 2024-04-19 11:28:39 +02:00
parent 779af276d3
commit 858e49e1d9
13 changed files with 36 additions and 123 deletions

View file

@ -0,0 +1,5 @@
namespace Presenter {
public interface IScoreView {
void UpdateView(int score);
}
}