OpenSceneGraph/src/osgPlugins/ive/LightSource.h
2003-05-24 14:42:00 +00:00

16 lines
271 B
C++

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