I need to be able to store a 2D boolean array within another array, which is as follows...
boolean[][] Player = new boolean[1][2];
Object[] Game = new Object[1];
Player[0][0] = true;
Player[0][1] = false;
Game[0] = Player[0][0];
I need to be able to set each Game[] index with a Player, but what I have above doesn't work. Is there any way to insert an array within an array?
Playeris a class.. I just can't get it out of my mind :)