#include <iostream> #include <stdlib.h> #include "dice.h" #include "game.h" int main (){ fprintf (stdout,"Qwixx initiated!\n"); Dice dice; dice.roll(); dice.print(); Game newgame; newgame.addPlayer("itsMe"); newgame.send(); }