summaryrefslogtreecommitdiff
path: root/src/player_level_flag.hpp
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-09-17 09:58:13 +0200
committerBardur Arantsson <bardur@scientician.net>2016-09-17 09:58:13 +0200
commit0a16384475488d682e33c8d55691e5d9417412ac (patch)
tree25b73201916e8b63cf012dbf0d8392af42e1d16f /src/player_level_flag.hpp
parentf507d6fb86fe7cfaf4dec69afa36875a1a4aaae4 (diff)
Unify opval/oflags in player_* structs into player_level_flag
Diffstat (limited to 'src/player_level_flag.hpp')
-rw-r--r--src/player_level_flag.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/player_level_flag.hpp b/src/player_level_flag.hpp
new file mode 100644
index 00000000..fe4c862c
--- /dev/null
+++ b/src/player_level_flag.hpp
@@ -0,0 +1,13 @@
+#pragma once
+
+#include "h-basic.h"
+#include "object_flag_set.hpp"
+#include "player_defs.hpp"
+
+struct player_level_flag {
+
+ object_flag_set oflags;
+
+ s16b pval = 0;
+
+};