I have homework in c#. I have to make a game (such as checkers, chess or something else, but not tic tac toe - and I choose checkers/draughts) with using minimax and alphabeta, but I don't even know how to start :( And I have a tight deadline. I worked with c# a little bit at school, but I'm not a programmer. Now I'm trying to make an array, that will be represent a board and positions of its pieces. What is better? If the information about positions of pieces and their values will be saved with the board or if these informations will be saved for each piece separately. And how to make the best array for this.
Basically what i need is an advice how to start, how to represent the game state - the basic structure of the program etc.