diff -r 41bbfd4d17a3 -r 824c9522ce66 src/game.h --- a/src/game.h Mon Mar 31 14:08:00 2014 +0200 +++ b/src/game.h Mon Mar 31 15:03:25 2014 +0200 @@ -37,25 +37,8 @@ extern "C" { #endif -typedef struct MoveList MoveList; -typedef struct MoveListRoot MoveListRoot; - -struct MoveListRoot { - MoveList* first; - MoveList* last; -}; - -struct MoveList { - Move move; - MoveList* next; -}; - - void game_start(Settings *settings, int opponent); -void freemovelist(MoveListRoot* list); -void addmove(MoveListRoot *movelist, Move *move); - #ifdef __cplusplus } #endif