diff options
author | Loic Blot <loic.blot@unix-experience.fr> | 2021-05-03 10:27:00 +0200 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2021-05-03 19:49:19 +0200 |
commit | de85bc9227ef0db01854fa0eef89256646b4d578 (patch) | |
tree | 9fa8a8e9d47178b830b3ac5ccc84af0546d14540 /src/client/renderingengine.h | |
parent | 48d5abd5bee7a3f956cb2b92745bed6313cf5d8a (diff) | |
download | minetest-de85bc9227ef0db01854fa0eef89256646b4d578.tar.xz |
fix: some code tidy about includes & irr namespaces
Diffstat (limited to 'src/client/renderingengine.h')
-rw-r--r-- | src/client/renderingengine.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/client/renderingengine.h b/src/client/renderingengine.h index 1fd85f5ef..28ddc8652 100644 --- a/src/client/renderingengine.h +++ b/src/client/renderingengine.h @@ -26,9 +26,6 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "irrlichttypes_extrabloated.h" #include "debug.h" -namespace irr { namespace scene { -class IMesh; -}} class ITextureSource; class Camera; class Client; @@ -60,7 +57,7 @@ public: static bool print_video_modes(); void cleanupMeshCache(); - void removeMesh(const irr::scene::IMesh* mesh); + void removeMesh(const scene::IMesh* mesh); static v2u32 getWindowSize() { |