here's a rough example of what I'm trying to accomplish:
Let's say Player.java has a method called public void setGoldAmt() to set the player's current gold amount. In Controller1.java, I want to have the line: player.setGoldAmt(10) to give the player 10 gold. Then, in Controller2.java, let's...