summaryrefslogtreecommitdiff
path: root/src/birther.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/birther.hpp')
-rw-r--r--src/birther.hpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/birther.hpp b/src/birther.hpp
new file mode 100644
index 00000000..0c28b513
--- /dev/null
+++ b/src/birther.hpp
@@ -0,0 +1,29 @@
+#pragma once
+
+#include "h-basic.h"
+
+#include <string>
+#include <vector>
+
+/**
+ * Player information during the birth process.
+ */
+struct birther
+{
+ s16b race;
+ s16b rmod;
+ s16b pclass;
+ s16b spec;
+
+ byte quests;
+
+ byte god;
+ s32b grace;
+
+ s32b au;
+
+ s16b stat[6];
+ s16b luck;
+
+ bool_ quick_ok;
+};