main.cpp 253 B

12345678910111213
  1. #include <iostream>
  2. #include <stdlib.h>
  3. #include "dice.h"
  4. #include "game.h"
  5. int main (){
  6. fprintf (stdout,"Qwixx initiated!\n");
  7. Dice dice;
  8. dice.roll();
  9. dice.print();
  10. Game newgame;
  11. newgame.addPlayer("itsMe");
  12. newgame.send();
  13. }