main.cpp 255 B

12345678910111213
  1. #include <iostream>
  2. #include <stdlib.h>
  3. #include <time.h>
  4. #include <vector>
  5. #include "dice.cpp"
  6. std::vector<int> rollDice();
  7. int main (){
  8. fprintf (stdout,"Qwixx initiated!\n");
  9. srand(time(NULL));
  10. Dice dice;
  11. dice.roll();
  12. dice.print();
  13. }