summaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-02-10 02:13:03 +0200
committerPerttu Ahola <celeron55@gmail.com>2011-02-10 02:13:03 +0200
commit1704badc306fc8c7c6609aff9f809aee3ac00d3a (patch)
tree76e1ba37bb0ec12bb744a6015f56613ba088e148 /src/main.h
parent949383a2f7c0707667f76615fc748ff4879e2cc1 (diff)
downloadminetest-1704badc306fc8c7c6609aff9f809aee3ac00d3a.tar.gz
minetest-1704badc306fc8c7c6609aff9f809aee3ac00d3a.tar.bz2
minetest-1704badc306fc8c7c6609aff9f809aee3ac00d3a.zip
work-in-progress texture atlas optimization
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/main.h b/src/main.h
index e6bb1caac..9978c537a 100644
--- a/src/main.h
+++ b/src/main.h
@@ -20,15 +20,20 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#ifndef MAIN_HEADER
#define MAIN_HEADER
-#include "irrlichtwrapper.h"
-
// Settings
+#include "utility.h"
extern Settings g_settings;
// A thread safe wrapper to irrlicht
// On a server build, this is always NULL.
+// TODO: Remove this
+#include "irrlichtwrapper.h"
extern IrrlichtWrapper *g_irrlicht;
+// This makes and maps textures
+#include "tile.h"
+extern TextureSource *g_texturesource;
+
// Debug streams
#include <fstream>