]> git.lizzy.rs Git - minetest.git/blobdiff - src/gamedef.h
Add rotation for plantlike drawtype.
[minetest.git] / src / gamedef.h
index 76de9f777a885291bca7abc80aa770131dccccd9..6da288bad8879992475c30592ec6045f8a6440b0 100644 (file)
@@ -1,6 +1,6 @@
 /*
 Minetest
-Copyright (C) 2011 celeron55, Perttu Ahola <celeron55@gmail.com>
+Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
@@ -31,6 +31,9 @@ class ISoundManager;
 class IShaderSource;
 class MtEventManager;
 class IRollbackReportSink;
+namespace irr { namespace scene {
+       class IAnimatedMesh;
+}}
 
 /*
        An interface for fetching game-global definitions like tool and
@@ -58,6 +61,8 @@ class IGameDef
        // Only usable on the client
        virtual ISoundManager* getSoundManager()=0;
        virtual MtEventManager* getEventManager()=0;
+       virtual scene::IAnimatedMesh* getMesh(const std::string &filename)
+       { return NULL; }
 
        // Only usable on the server, and NOT thread-safe. It is usable from the
        // environment thread.