diff options
author | Your Name <you@example.com> | 2021-05-01 15:10:54 -0400 |
---|---|---|
committer | Your Name <you@example.com> | 2021-05-01 15:10:54 -0400 |
commit | 7b5d1e3d46e94262a9c0fd3a01ab4685aea9d12d (patch) | |
tree | d9b808542216f71dbab053ad23145903e96c6401 /src/dice.h | |
parent | 5a813a75412ac9b8fadb90c9abd46dd95aee8e9b (diff) | |
download | dmtool-7b5d1e3d46e94262a9c0fd3a01ab4685aea9d12d.tar.gz dmtool-7b5d1e3d46e94262a9c0fd3a01ab4685aea9d12d.tar.bz2 dmtool-7b5d1e3d46e94262a9c0fd3a01ab4685aea9d12d.zip |
Added bash completion, amongst others
Diffstat (limited to 'src/dice.h')
-rw-r--r-- | src/dice.h | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -1,9 +1,5 @@ #pragma once -#include <random> -std::mt19937 gen(std::random_device{}()); - -int roll(int d) { - std::uniform_int_distribution<> dist(1, d); - return dist(gen); +namespace dice { + int roll(int d); } |