summaryrefslogtreecommitdiff
path: root/src/flags_group.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/flags_group.hpp')
-rw-r--r--src/flags_group.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/flags_group.hpp b/src/flags_group.hpp
new file mode 100644
index 00000000..84809e37
--- /dev/null
+++ b/src/flags_group.hpp
@@ -0,0 +1,17 @@
+#pragma once
+
+#include "h-basic.h"
+#include "object_flag_set.hpp"
+
+/**
+ * For level gaining artifacts
+ */
+struct flags_group
+{
+ char name[30] { }; /* Name */
+ byte color = 0; /* Color */
+
+ byte price = 0; /* Price to "buy" it */
+
+ object_flag_set flags; /* Flags set */
+};