OpenSceneGraph/src/osgPlugins/ive/PolygonOffset.h
2003-06-24 21:57:13 +00:00

16 lines
281 B
C++

#ifndef IVE_POLYGONOFFSET
#define IVE_POLYGONOFFSET 1
#include <osg/PolygonOffset>
#include "ReadWrite.h"
namespace ive{
class PolygonOffset : public osg::PolygonOffset, public ReadWrite {
public:
void write(DataOutputStream* out);
void read(DataInputStream* in);
};
}
#endif