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

16 lines
223 B
C++

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