summaryrefslogtreecommitdiff
path: root/src/device_allocation.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/device_allocation.hpp')
-rw-r--r--src/device_allocation.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/device_allocation.hpp b/src/device_allocation.hpp
new file mode 100644
index 00000000..28854eac
--- /dev/null
+++ b/src/device_allocation.hpp
@@ -0,0 +1,17 @@
+#pragma once
+
+#include "device_allocation_fwd.hpp"
+#include "range.hpp"
+
+/*
+ * Device allocation for skill
+ */
+struct device_allocation
+{
+ byte tval;
+ s32b rarity;
+ range_type base_level;
+ range_type max_level;
+};
+
+struct device_allocation *device_allocation_new(byte tval);