mirror of
https://github.com/scummvm/scummvm.git
synced 2025-04-02 10:52:32 -04:00
12 lines
113 B
C++
12 lines
113 B
C++
#ifndef __DICE_H
|
|
#define __DICE_H
|
|
|
|
class Dice
|
|
{
|
|
public:
|
|
Dice();
|
|
|
|
unsigned roll();
|
|
};
|
|
|
|
#endif // __DICE_H
|