mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-25 08:03:54 -07:00
unimportant changes
This commit is contained in:
parent
4054afc759
commit
7f659573bc
21 changed files with 89 additions and 51 deletions
13
servatrice/src/abstractrng.h
Normal file
13
servatrice/src/abstractrng.h
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue