dice.h 273 B

1234567891011121314
  1. #ifndef DICE
  2. #define DICE
  3. #include <vector>
  4. #include <iostream>
  5. #include <time.h>
  6. #include "qwixx.h"
  7. class Dice {
  8. public:
  9. std::vector<int> dice;
  10. Dice();
  11. int roll();
  12. void print();
  13. };
  14. #endif