summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/externs.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/externs.h')
-rw-r--r--crawl-ref/source/externs.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/crawl-ref/source/externs.h b/crawl-ref/source/externs.h
index 2f0aa523a3..c2a0ec73be 100644
--- a/crawl-ref/source/externs.h
+++ b/crawl-ref/source/externs.h
@@ -28,18 +28,6 @@
#include "store.h"
#ifdef USE_TILE
-// This used to be in tiles.h. (jpeg)
-#include "tiledef-main.h"
-#include "tiledef-dngn.h"
-#include "tiledef-player.h"
-
-struct dolls_data
-{
- dolls_data() { memset(parts, 0, sizeof(parts)); }
-
- int parts[TILEP_PART_MAX];
-};
-
struct tile_flavour
{
// The floor tile to use.
@@ -1181,24 +1169,6 @@ protected:
extern player you;
-struct player_save_info
-{
- std::string name;
- unsigned long experience;
- int experience_level;
- bool wizard;
- species_type species;
- std::string class_name;
- god_type religion;
-#ifdef USE_TILE
- dolls_data doll;
-#endif
-
- player_save_info operator=(const player& rhs);
- bool operator<(const player_save_info& rhs) const;
- std::string short_desc() const;
-};
-
class monster_spells : public FixedVector<spell_type, NUM_MONSTER_SPELL_SLOTS>
{
public: