xlnt/third-party/cxxtest/sample/mock/Dice.h

14 lines
114 B
C
Raw Normal View History

#ifndef __DICE_H
#define __DICE_H
class Dice
{
public:
Dice();
unsigned roll();
};
#endif // __DICE_H