summaryrefslogtreecommitdiffstats
path: root/stone_soup/crawl-ref/source/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'stone_soup/crawl-ref/source/command.h')
-rw-r--r--stone_soup/crawl-ref/source/command.h60
1 files changed, 0 insertions, 60 deletions
diff --git a/stone_soup/crawl-ref/source/command.h b/stone_soup/crawl-ref/source/command.h
deleted file mode 100644
index 7bdd3a9e85..0000000000
--- a/stone_soup/crawl-ref/source/command.h
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * 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