]> git.mxchange.org Git - simgear.git/blobdiff - simgear/scene/material/Pass.cxx
Random buildings - initial commit.
[simgear.git] / simgear / scene / material / Pass.cxx
index 9c1aafcea1882cc869e267a5bb4441a07b7ebc51..2a47ea39644f2561ac73e64c7e92e6d23dba961f 100644 (file)
@@ -1,5 +1,7 @@
 #include "Pass.hxx"
 
+#include <osgDB/Registry>
+
 namespace simgear
 {
 
@@ -7,4 +9,16 @@ Pass::Pass(const Pass& rhs, const osg::CopyOp& copyop) :
     osg::StateSet(rhs, copyop)
 {
 }
+
+namespace
+{
+osgDB::RegisterDotOsgWrapperProxy PassProxy
+(
+    new Pass,
+    "simgear::Pass",
+    "Object simgear::Pass StateSet ",
+    0,
+    0
+    );
+}
 }