feat: hide title when game starts
This commit is contained in:
parent
0bed7bbea4
commit
58ec07b1a0
5 changed files with 42 additions and 8 deletions
16
Assets/Scripts/View/ExpressionInputCollection.cs
Normal file
16
Assets/Scripts/View/ExpressionInputCollection.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using Presenter;
|
||||
|
||||
namespace View {
|
||||
public class ExpressionInputCollection : IExpressionInput {
|
||||
private readonly IExpressionInput[] _inputs;
|
||||
|
||||
public ExpressionInputCollection(IExpressionInput[] inputs) {
|
||||
_inputs = inputs;
|
||||
}
|
||||
|
||||
public void UpdateView(int score) {
|
||||
foreach (IExpressionInput input in _inputs)
|
||||
input.UpdateView(score);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue