scummvm/test/cxxtest/sample/mock/Dice.h
2011-08-07 13:53:33 +02:00

12 lines
113 B
C++

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