I'm currently making a java chess game which as a requirement is to be played over a network.
Part of my design is to have a multidimensional array (8x8) which holds the information regarding the board data. Is it possible to send a complete array over a network in order to update the opponents array with the last move to have taken place.
I know strings can be sent over a network but can a whole array, if so how?
Part of my design is to have a multidimensional array (8x8) which holds the information regarding the board data. Is it possible to send a complete array over a network in order to update the opponents array with the last move to have taken place.
I know strings can be sent over a network but can a whole array, if so how?