mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
13 lines
260 B
C++
13 lines
260 B
C++
#ifndef ABSTRACTRNG_H
|
|
#define ABSTRACTRNG_H
|
|
|
|
#include <QObject>
|
|
|
|
class AbstractRNG : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
AbstractRNG(QObject *parent = 0) : QObject(parent) { }
|
|
virtual unsigned int getNumber(unsigned int min, unsigned int max) = 0;
|
|
};
|
|
|
|
#endif
|