Roses/Assets/Scripts/View/Collections/ScoreViewCollection.cs
2024-04-19 11:28:39 +02:00

16 lines
No EOL
335 B
C#

using Presenter;
namespace View.Collections {
public class ScoreViewCollection : IScoreView {
private readonly IScoreView[] _inputs;
public ScoreViewCollection(IScoreView[] inputs) {
_inputs = inputs;
}
public void UpdateView(int score) {
foreach (IScoreView input in _inputs)
input.UpdateView(score);
}
}
}