]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Graphic/Decal.hpp
Using the Decal class in Model as well
[lugaru.git] / Source / Graphic / Decal.hpp
index ae3862fbf603612c30f3161b8483a60521d57da0..094d04355d1fc92159e98e030987be6b8bb835ce 100644 (file)
@@ -22,6 +22,7 @@ along with Lugaru.  If not, see <http://www.gnu.org/licenses/>.
 #define _DECAL_HPP_
 
 class Terrain;
+class Model;
 
 #include "Math/Quaternions.hpp"
 
@@ -51,6 +52,7 @@ public:
 
     Decal();
     Decal(XYZ position, decal_type type, float opacity, float rotation, float brightness, int whichx, int whichy, float size, const Terrain& terrain, bool first);
+    Decal(XYZ position, decal_type type, float opacity, float rotation, float size, const Model& model, int i, int which);
 };
 
 #endif