summaryrefslogtreecommitdiffstats
path: root/trunk/source/describe.h
diff options
context:
space:
mode:
authornlanza <nlanza@c06c8d41-db1a-0410-9941-cceddc491573>2006-08-13 02:19:00 +0000
committernlanza <nlanza@c06c8d41-db1a-0410-9941-cceddc491573>2006-08-13 02:19:00 +0000
commitaa88fdd8c6ad2da5eb5bd933e2d53d56cd8c176f (patch)
treed0551b96eaebb5b55694579fb8dae4abc7a38407 /trunk/source/describe.h
parent2b32f164e6ca1c4b3d587789f6cf46f46fe02fe8 (diff)
downloadcrawl-ref-aa88fdd8c6ad2da5eb5bd933e2d53d56cd8c176f.tar.gz
crawl-ref-aa88fdd8c6ad2da5eb5bd933e2d53d56cd8c176f.zip
Clean up a mistake in the SVN import.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'trunk/source/describe.h')
-rw-r--r--trunk/source/describe.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/trunk/source/describe.h b/trunk/source/describe.h
deleted file mode 100644
index 981f90ce01..0000000000
--- a/trunk/source/describe.h
+++ /dev/null
@@ -1,64 +0,0 @@
-
-/*
- * File: describe.h
- * Summary: Functions used to print information about various game objects.
- * Written by: Linley Henzell
- *
- * Change History (most recent first):
- *
- * <2> 5/21/99 BWR Changed from is_artifact to is_dumpable_artifact
- * <1> 4/20/99 JDJ Added get_item_description and is_artifact.
- */
-
-#ifndef DESCRIBE_H
-#define DESCRIBE_H
-
-#include <string>
-#include "externs.h"
-
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: chardump - spells4
- * *********************************************************************** */
-bool is_dumpable_artifact( const item_def &item, char verbose );
-
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: chardump - describe
- * *********************************************************************** */
-std::string get_item_description( const item_def &item, char verbose,
- bool dump = false );
-
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: acr - religion
- * *********************************************************************** */
-void describe_god( int which_god, bool give_title );
-
-
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: item_use - shopping
- * *********************************************************************** */
-void describe_item( const item_def &item );
-
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: direct
- * *********************************************************************** */
-void describe_monsters(int class_described, unsigned char which_mons);
-
-
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: item_use
- * *********************************************************************** */
-void describe_spell(int spelled);
-
-// last updated 13oct2003 {darshan}
-/* ***********************************************************************
- * called from: describe_monsters - describe, kill_ghost - Kills
- * *********************************************************************** */
-std::string ghost_description(bool concise = false);
-
-#endif