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

16 lines
228 B
C++

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