JFox wrote...
Should I create a detectClick method for every individual button, so that they can individually swap out the images or should I put it like in the code i posted.1 2 3 | String sequence = "" ; int index; boolean isPhaseOne; |
1 2 3 4 | public void act() { if (isPhaseOne) phaseOne(); else phaseTwo(); } |