#ifndef DICE #define DICE #include #include #include #include "qwixx.h" class Dice { public: std::vector dice; Dice(); int roll(); void print(); // add entropy to the dice rolls void diceTropy(int entropy); private: int previousSeed; }; #endif