feat: load system

This commit is contained in:
Gerard Gascón 2024-04-17 00:37:39 +02:00
parent 5d470a57af
commit 60d20bfe4e
20 changed files with 421 additions and 67 deletions

View file

@ -8,9 +8,9 @@ namespace View {
_inputs = inputs;
}
public void UpdateView(int score) {
public void UpdateView(int score, float growPercentage) {
foreach (IExpressionInput input in _inputs)
input.UpdateView(score);
input.UpdateView(score, growPercentage);
}
}
}