summaryrefslogtreecommitdiff
path: root/src/inscription_info_type.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/inscription_info_type.hpp')
-rw-r--r--src/inscription_info_type.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/inscription_info_type.hpp b/src/inscription_info_type.hpp
new file mode 100644
index 00000000..6dbb67f1
--- /dev/null
+++ b/src/inscription_info_type.hpp
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "h-basic.h"
+
+/**
+ * Inscriptions
+ */
+struct inscription_info_type
+{
+ char text[40]; /* The inscription itself */
+ byte when; /* When it is executed */
+ bool_ know; /* Is the inscription know ? */
+ byte mana; /* Grid mana needed */
+};