Hi,
In my board game, if you roll a 4 on the dice, you choose one of your pieces to move back one space. This is not possible if both of your pieces are on the first space.
I need to make it so that a boolean turns true when both your pieces cannot move.
I already have a method which recognises that you have rolled a 4 on the first space but this only knows that one piece cant move.
Basically, I have a non-static method called fourOnStart which knows if that object cannot move - there are 2 objects if each counter class. I need to have a variable called bothCannotMove which turns true when neither of the pieces can move. Help?

