summaryrefslogtreecommitdiff
path: root/src/dice.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/dice.hpp')
-rw-r--r--src/dice.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/dice.hpp b/src/dice.hpp
new file mode 100644
index 00000000..40a49e37
--- /dev/null
+++ b/src/dice.hpp
@@ -0,0 +1,13 @@
+#pragma once
+
+#include "dice_fwd.hpp"
+
+/**
+ * Dice
+ */
+struct dice_type
+{
+ long base; /* Base value to which roll is added. */
+ long num; /* Number of dice */
+ long sides; /* Sides per dice */
+};