Made money save to file

This commit is contained in:
Pasha Bibko
2026-05-05 09:35:12 +01:00
parent 7b9b296fb8
commit 99289ab2ba
5 changed files with 138 additions and 3 deletions

View File

@@ -9,6 +9,6 @@ namespace Fruitomation.UI
[SerializeField] private Text MoneyText;
private void Update() =>
MoneyText.text = $"Current Money: {MoneyController.Current:F1}";
MoneyText.text = $"Current Money: {MoneyController.CurrentAmount:F1}";
}
}