summaryrefslogtreecommitdiff
path: root/src/hist_type.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/hist_type.hpp')
-rw-r--r--src/hist_type.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/hist_type.hpp b/src/hist_type.hpp
new file mode 100644
index 00000000..2da47b7c
--- /dev/null
+++ b/src/hist_type.hpp
@@ -0,0 +1,16 @@
+#pragma once
+
+#include "h-basic.h"
+
+/**
+ * Player background descriptor.
+ */
+struct hist_type
+{
+ char *info; /* Textual History */
+
+ byte roll; /* Frequency of this entry */
+ s16b chart; /* Chart index */
+ s16b next; /* Next chart index */
+ byte bonus; /* Social Class Bonus + 50 */
+};