]> git.mxchange.org Git - simgear.git/blob - simgear/scene/material/Pass.cxx
Random buildings - initial commit.
[simgear.git] / simgear / scene / material / Pass.cxx
1 #include "Pass.hxx"
2
3 #include <osgDB/Registry>
4
5 namespace simgear
6 {
7
8 Pass::Pass(const Pass& rhs, const osg::CopyOp& copyop) :
9     osg::StateSet(rhs, copyop)
10 {
11 }
12
13 namespace
14 {
15 osgDB::RegisterDotOsgWrapperProxy PassProxy
16 (
17     new Pass,
18     "simgear::Pass",
19     "Object simgear::Pass StateSet ",
20     0,
21     0
22     );
23 }
24 }