Files
OpenSceneGraph/src/osgPlugins/ive/StateSet.h
2016-05-31 10:28:08 +01:00

16 lines
239 B
C++

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