aboutsummaryrefslogtreecommitdiff
path: root/src/dice.cc
diff options
context:
space:
mode:
authorYour Name <you@example.com>2021-05-01 15:10:54 -0400
committerYour Name <you@example.com>2021-05-01 15:10:54 -0400
commit7b5d1e3d46e94262a9c0fd3a01ab4685aea9d12d (patch)
treed9b808542216f71dbab053ad23145903e96c6401 /src/dice.cc
parent5a813a75412ac9b8fadb90c9abd46dd95aee8e9b (diff)
downloaddmtool-7b5d1e3d46e94262a9c0fd3a01ab4685aea9d12d.tar.gz
dmtool-7b5d1e3d46e94262a9c0fd3a01ab4685aea9d12d.tar.bz2
dmtool-7b5d1e3d46e94262a9c0fd3a01ab4685aea9d12d.zip
Added bash completion, amongst others
Diffstat (limited to 'src/dice.cc')
-rw-r--r--src/dice.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/dice.cc b/src/dice.cc
new file mode 100644
index 0000000..dd7db55
--- /dev/null
+++ b/src/dice.cc
@@ -0,0 +1,11 @@
+#include "dice.h"
+#include <random>
+
+namespace dice {
+ std::mt19937 gen(std::random_device{}());
+
+ int roll(int d) {
+ std::uniform_int_distribution<> dist(1, d);
+ return dist(gen);
+ }
+}