From: Mikko Rasa Date: Sat, 11 Dec 2010 01:24:35 +0000 (+0000) Subject: Use the new scene classes X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;ds=inline;h=306c48b72ce73c9dd2d4ae7e066ab14da70ab11e;p=r2c2.git Use the new scene classes --- diff --git a/source/3d/layout.h b/source/3d/layout.h index e7f3c33..5964a04 100644 --- a/source/3d/layout.h +++ b/source/3d/layout.h @@ -9,7 +9,7 @@ Distributed under the GPL #define R2C2_3D_LAYOUT_H_ #include -#include +#include #include "libr2c2/layout.h" #include "catalogue.h" @@ -29,9 +29,9 @@ private: Catalogue3D catalogue; TrackMap tracks; VehicleMap vehicles; - Msp::GL::Scene scene; - Msp::GL::Scene ep_scene; - Msp::GL::Scene path_scene; + Msp::GL::SimpleScene scene; + Msp::GL::SimpleScene ep_scene; + Msp::GL::SimpleScene path_scene; public: Layout3D(Layout &);