reset password
Author Message
hhuang30
Posts: 40
Posted 11:28 Apr 15, 2014 |

For TTT game, I use two dimension array to represent game board condition, so how to map this two dimension array  to its to relational table in order to store game state in game saved part?

One solution I can image is instead of using 2D array, creating anther class with row, column and status three attributes. And game board conditions is list of this class type objects. Or is there any other options?

thank you