aboutsummaryrefslogtreecommitdiff
path: root/src/client/client.h
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2021-04-29 09:40:56 +0200
committerLoïc Blot <nerzhul@users.noreply.github.com>2021-05-03 19:49:19 +0200
commit5a02c376ea5f2e7f1dd0a2bd4f08bf953ed4bfc8 (patch)
treed4bd7334bad7f1bf0d01d1dc6acbaccd34132823 /src/client/client.h
parentccdd886e273ec2fa5f8cfe1d1f474914eccb2abf (diff)
downloadhax-minetest-server-5a02c376ea5f2e7f1dd0a2bd4f08bf953ed4bfc8.tar.gz
hax-minetest-server-5a02c376ea5f2e7f1dd0a2bd4f08bf953ed4bfc8.zip
refacto: RenderingEngine::get_scene_manager() is now not callable from singleton
This permits to make evidence that we have some bad object passing on various code parts. I fixed majority of them to reduce the scope of passed objects Unfortunately, for some edge cases i should have to expose ISceneManager from client, this should be fixed in the future when our POO will be cleaner client side (we have a mix of rendering and processing in majority of the client objects, it works but it's not clean)
Diffstat (limited to 'src/client/client.h')
-rw-r--r--src/client/client.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/client.h b/src/client/client.h
index bcb7d6b09..be5970160 100644
--- a/src/client/client.h
+++ b/src/client/client.h
@@ -355,6 +355,7 @@ public:
void setCamera(Camera* camera) { m_camera = camera; }
Camera* getCamera () { return m_camera; }
+ irr::scene::ISceneManager *getSceneManager();
bool shouldShowMinimap() const;