mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
13 lines
147 B
C++
13 lines
147 B
C++
#include <T/stdlib.h>
|
|
#include "Dice.h"
|
|
|
|
Dice::Dice()
|
|
{
|
|
T::srand( T::time( 0 ) );
|
|
}
|
|
|
|
unsigned Dice::roll()
|
|
{
|
|
return (T::rand() % 6) + 1;
|
|
}
|