mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-25 08:03:54 -07:00
extra files
This commit is contained in:
parent
7e9879c0ea
commit
d52b00fbd8
7 changed files with 992 additions and 0 deletions
14
common/rng_sfmt.h
Normal file
14
common/rng_sfmt.h
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#ifndef RNG_SFMT_H
|
||||
#define RNG_SFMT_H
|
||||
|
||||
#include "rng_abstract.h"
|
||||
|
||||
class RNG_SFMT : public RNG_Abstract {
|
||||
Q_OBJECT
|
||||
public:
|
||||
RNG_SFMT(QObject *parent = 0);
|
||||
unsigned int getNumber(unsigned int min, unsigned int max);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue