summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makeitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/makeitem.h')
-rw-r--r--crawl-ref/source/makeitem.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/crawl-ref/source/makeitem.h b/crawl-ref/source/makeitem.h
new file mode 100644
index 0000000000..e672f8f262
--- /dev/null
+++ b/crawl-ref/source/makeitem.h
@@ -0,0 +1,14 @@
+#ifndef MAKEITEM_H
+#define MAKEITEM_H
+
+#include "dungeon.h"
+
+int items( int allow_uniques, int force_class, int force_type,
+ bool dont_place, int item_level, int item_race,
+ const dgn_region_list &forbidden = dgn_region_list() );
+
+void item_colour( item_def &item );
+void init_rod_mp(item_def &item);
+void give_item(int mid, int level_number);
+
+#endif