mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
14 lines
114 B
C++
14 lines
114 B
C++
#ifndef __DICE_H
|
|
#define __DICE_H
|
|
|
|
class Dice
|
|
{
|
|
public:
|
|
Dice();
|
|
|
|
unsigned roll();
|
|
};
|
|
|
|
#endif // __DICE_H
|
|
|