]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Graphic/Models.hpp
Removed unused members in Model class
[lugaru.git] / Source / Graphic / Models.hpp
index 6b907f22a913c5feb059eb929a0a188cf47e4910..eb4ef0909383af7d88045a987644504be07fc186 100644 (file)
@@ -24,7 +24,7 @@ along with Lugaru.  If not, see <http://www.gnu.org/licenses/>.
 #include "Environment/Terrain.hpp"
 #include "Graphic/gamegl.hpp"
 #include "Graphic/Texture.hpp"
-#include "Math/Quaternions.hpp"
+#include "Math/XYZ.hpp"
 #include "Utils/binio.h"
 
 #include <cstdio>
@@ -64,9 +64,8 @@ class Model
 {
 public:
     short vertexNum;
-    bool hastexture;
 
-    int type, oldtype;
+    int type;
 
     int* owner;
     XYZ* vertex;
@@ -117,7 +116,6 @@ public:
     void Translate(float xtrans, float ytrans, float ztrans);
     void CalculateNormals(bool facenormalise);
     void draw();
-    void drawdifftex(GLuint texture);
     void drawdifftex(Texture texture);
     void drawimmediate();
     void Rotate(float xang, float yang, float zang);