When I try to use an int array from my world in an actor class, I get an error that java.lang.String cannot be converted to int.
Here is my code:
The changeVotes method requires an int.
In World:
public Integer [] stateVotes={55,4,3,4,11,18,29};
In class:
wash.changeVotes(stateVotes[0]);


