summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dlua.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-10-19 23:29:48 +0200
committerRobert Vollmert <rvollmert@gmx.net>2009-10-19 23:29:48 +0200
commitcf2b911c89d554a8f5f72156cef48b5f0fefd797 (patch)
tree38e7c526b743bd71fa8b50409515ca38d5b0a8a9 /crawl-ref/source/dlua.cc
parent8e94f180081dc6d88069afefe9a7f92828d32729 (diff)
downloadcrawl-ref-cf2b911c89d554a8f5f72156cef48b5f0fefd797.tar.gz
crawl-ref-cf2b911c89d554a8f5f72156cef48b5f0fefd797.zip
Reduce #includes in dlua.cc.
Diffstat (limited to 'crawl-ref/source/dlua.cc')
-rw-r--r--crawl-ref/source/dlua.cc34
1 files changed, 0 insertions, 34 deletions
diff --git a/crawl-ref/source/dlua.cc b/crawl-ref/source/dlua.cc
index b83dad752c..c61cd50450 100644
--- a/crawl-ref/source/dlua.cc
+++ b/crawl-ref/source/dlua.cc
@@ -7,46 +7,12 @@
#include "AppHdr.h"
#include <sstream>
-#include <algorithm>
-#include <memory>
-#include <cmath>
#include "dlua.h"
#include "l_libs.h"
-#include "branch.h"
-#include "chardump.h"
-#include "clua.h"
-#include "cloud.h"
-#include "describe.h"
-#include "directn.h"
-#include "dungeon.h"
-#include "files.h"
-#include "hiscores.h"
-#include "initfile.h"
-#include "items.h"
-#include "los.h"
#include "mapdef.h"
-#include "mapmark.h"
-#include "maps.h"
-#include "message.h"
-#include "misc.h"
-#include "mon-util.h"
-#include "monplace.h"
-#include "monstuff.h"
-#include "place.h"
-#include "spells3.h"
-#include "spl-util.h"
-#include "state.h"
-#include "stuff.h"
#include "tags.h"
-#include "terrain.h"
-#include "view.h"
-
-#ifdef UNIX
-#include <sys/time.h>
-#include <time.h>
-#endif
template <typename list, typename lpush>
static int dlua_gentable(lua_State *ls, const list &strings, lpush push)