summaryrefslogtreecommitdiff
path: root/src/deity_type.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/deity_type.hpp')
-rw-r--r--src/deity_type.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/deity_type.hpp b/src/deity_type.hpp
new file mode 100644
index 00000000..0dcbb818
--- /dev/null
+++ b/src/deity_type.hpp
@@ -0,0 +1,11 @@
+#pragma once
+
+/**
+ * A structure for deity information.
+ */
+struct deity_type
+{
+ int modules[3]; /* terminated with -1 */
+ char const *name;
+ char desc[10][80];
+};