Cockatrice/servatrice/src/rng_qt.h
2009-06-10 21:17:24 +02:00

13 lines
217 B
C++

#ifndef RNG_QT_H
#define RNG_QT_H
#include "abstractrng.h"
class RNG_Qt : public AbstractRNG {
Q_OBJECT
public:
RNG_Qt(QObject *parent = 0);
unsigned int getNumber(unsigned int min, unsigned int max);
};
#endif