summaryrefslogtreecommitdiff
path: root/src/mapsector.h
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2010-12-19 19:11:05 +0200
committerPerttu Ahola <celeron55@gmail.com>2010-12-19 19:11:05 +0200
commitab7477c4c3e2a3647dc4fb65c71567946d33b0e3 (patch)
treefb9aaca70617875ff68f8ba1674f5a6fccd4f385 /src/mapsector.h
parent0ca9423b8b2cf7bd1435fb09eba7a9f50d444864 (diff)
downloadminetest-ab7477c4c3e2a3647dc4fb65c71567946d33b0e3.tar.gz
minetest-ab7477c4c3e2a3647dc4fb65c71567946d33b0e3.tar.bz2
minetest-ab7477c4c3e2a3647dc4fb65c71567946d33b0e3.zip
added dedicated server build without irrlicht
Diffstat (limited to 'src/mapsector.h')
-rw-r--r--src/mapsector.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mapsector.h b/src/mapsector.h
index d5ffa7f1d..b57688115 100644
--- a/src/mapsector.h
+++ b/src/mapsector.h
@@ -309,6 +309,7 @@ private:
core::map<v3s16, u8> *m_objects;
};
+#ifndef SERVER
class ClientMapSector : public MapSector
{
public:
@@ -331,6 +332,7 @@ private:
// The ground height of the corners is stored in here
s16 m_corners[4];
};
+#endif
#endif