Jelajahi Sumber

dice is now rolled when it is constructed.

wes 4 tahun lalu
induk
melakukan
77fd0ca85b
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      Qwixx/dice.cpp

+ 1 - 1
Qwixx/dice.cpp

@@ -1,9 +1,9 @@
 #include "dice.h"
 Dice::Dice(){
     srand(time(NULL));
+    roll();
 }
 int Dice::roll() {
-    std::vector<int> output;
     // generate 6 random numbers to assign to each die
     for (int i = 0; i<colors; i++) {
         // store numbers generated from rand into output