xlnt/third-party/cxxtest/sample/mock/Dice.cpp

15 lines
145 B
C++
Raw Normal View History

#include <T/stdlib.h>
#include "Dice.h"
Dice::Dice()
{
T::srand(T::time(0));
}
unsigned Dice::roll()
{
return (T::rand() % 6) + 1;
}