DEBSOURCES
Skip Quicknav
sources / 0ad / 0.0.23.1-2 / libraries / source / cxxtest-4.4 / sample / mock / Dice.cpp
1234567891011121314
#include <T/stdlib.h> #include "Dice.h" Dice::Dice() { T::srand(T::time(0)); } unsigned Dice::roll() { return (T::rand() % 6) + 1; }