DEBSOURCES
Skip Quicknav
sources / scummvm / 2.0.0%2Bdfsg-2 / test / cxxtest / sample / mock / Dice.cpp
123456789101112
#include <T/stdlib.h> #include "Dice.h" Dice::Dice() { T::srand( T::time( 0 ) ); } unsigned Dice::roll() { return (T::rand() % 6) + 1; }