Cleaned up a bit of code, need to work on camera handlign (Isn't as smooth as I want it to be)

This commit is contained in:
Finnchen123
2025-06-07 09:23:38 +02:00
parent 5a68fc0447
commit aa7bb5ec79
14 changed files with 101 additions and 155 deletions

View File

@@ -25,19 +25,19 @@ namespace Assets.Scripts.Player
}
public string getTooltip(){
return this.tooltip;
return tooltip;
}
public string getText(){
return this.text;
return text;
}
public int getAmount(){
return this.amount;
return amount;
}
public void changeAmount(int change){
this.amount = this.amount + change;
amount += change;
}
public void setAmount(int amount){