]> git.mxchange.org Git - flightgear.git/blobdiff - src/ATC/AIEntity.hxx
Moved some of the low level scene graph construction code over to simgear.
[flightgear.git] / src / ATC / AIEntity.hxx
index 17c62b0c69fe523ed50b6531a39666ec3ccba998..deab859e2b8a92c9828dc2e96173a0fe9e0f8a03 100644 (file)
@@ -25,9 +25,8 @@
 #include <plib/ssg.h>
 
 #include <simgear/math/point3d.hxx>
-
-#include <Model/model.hxx>
-#include <Model/placement.hxx>
+#include <simgear/scene/model/model.hxx>
+#include <simgear/scene/model/placement.hxx>
 
 
 /*****************************************************************
@@ -47,9 +46,9 @@ public:
     // Run the internal calculations
     virtual void Update(double dt);
        
-       // Send a transmission *TO* the AIEntity.
-       // FIXME int code is a hack - eventually this will receive Alexander's coded messages.
-       virtual void RegisterTransmission(int code);
+    // Send a transmission *TO* the AIEntity.
+    // FIXME int code is a hack - eventually this will receive Alexander's coded messages.
+    virtual void RegisterTransmission(int code);
 
 protected:
 
@@ -59,7 +58,7 @@ protected:
     double pitch;      //degrees
 
     char* model_path;  //Path to the 3D model
-    FGModelPlacement aip;
+    SGModelPlacement aip;
 
     void Transform();
 };