]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Graphic/Models.hpp
Using an enum for model type
[lugaru.git] / Source / Graphic / Models.hpp
index ecfb3dd8cb46028216f1b14155714796defe2490..54b28858ae3a7d2f2a3bcf31e347bfe7b56f11ba 100644 (file)
@@ -54,19 +54,21 @@ public:
 
 #define max_model_decals 300
 
-#define nothing 0
-#define normaltype 4
-#define notextype 1
-#define rawtype 2
-#define decalstype 3
+enum ModelType
+{
+    nothing = 0,
+    notextype = 1,
+    rawtype = 2,
+    decalstype = 3,
+    normaltype = 4
+};
 
 class Model
 {
 public:
     short vertexNum;
-    bool hastexture;
 
-    int type, oldtype;
+    ModelType type;
 
     int* owner;
     XYZ* vertex;