summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/command.h')
-rw-r--r--crawl-ref/source/command.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/crawl-ref/source/command.h b/crawl-ref/source/command.h
new file mode 100644
index 0000000000..7bdd3a9e85
--- /dev/null
+++ b/crawl-ref/source/command.h
@@ -0,0 +1,60 @@
+/*
+ * File: command.cc
+ * Summary: Misc commands.
+ * Written by: Linley Henzell
+ *
+ * Change History (most recent first):
+ *
+ * <1> -/--/-- LRH Created
+ */
+
+
+#ifndef COMMAND_H
+#define COMMAND_H
+
+
+// last updated 12may2000 {dlb}
+/* ***********************************************************************
+ * called from: acr
+ * *********************************************************************** */
+void quit_game(void);
+
+
+// last updated 12may2000 {dlb}
+/* ***********************************************************************
+ * called from: acr
+ * *********************************************************************** */
+void version(void);
+
+
+// last updated 12may2000 {dlb}
+/* ***********************************************************************
+ * called from: acr
+ * *********************************************************************** */
+void adjust(void);
+
+
+// last updated 12may2000 {dlb}
+/* ***********************************************************************
+ * called from: acr
+ * *********************************************************************** */
+void list_weapons(void);
+
+
+// last updated 12may2000 {dlb}
+/* ***********************************************************************
+ * called from: acr
+ * *********************************************************************** */
+void list_armour(void);
+
+
+// last updated 12may2000 {dlb}
+/* ***********************************************************************
+ * called from: acr
+ * *********************************************************************** */
+void list_jewellery(void);
+
+
+void swap_inv_slots(int slot1, int slot2, bool verbose);
+
+#endif