energia sav

This commit is contained in:
2022-11-07 17:25:24 +01:00
parent 302c977200
commit 58648bb9ee
10 changed files with 4609 additions and 113 deletions

View File

@@ -18,6 +18,8 @@ public class Dice : MonoBehaviour {
public int[] getDices() { return diceResult; }
public int getValasztottErtek() { return valasztottErtek; }
public void setValasztottErtek(int ujErtek) { valasztottErtek = ujErtek; }
public bool getLocked() { return locked; }
public void setLocked(bool locked) { this.locked = locked; }
private void Start() {
upgrade = FindObjectOfType<Upgrade>();