diff options
Diffstat (limited to 'game/Random.h')
-rw-r--r-- | game/Random.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/game/Random.h b/game/Random.h index 8af9669..4a1108a 100644 --- a/game/Random.h +++ b/game/Random.h @@ -6,4 +6,6 @@ public: static double d(double upper = 1.0, double lower = 0.0); static int i(int upper, int lower = 0); static unsigned u(unsigned upper, unsigned lower = 0); + static bool b(); }; + |