e68cfd1965
a ShapeDrawable. From Robert, add versioning of the above change to allow old files to still work.
16 lines
278 B
C++
16 lines
278 B
C++
#ifndef IVE_LIGHTMODEL
|
|
#define IVE_LIGHTMODEL 1
|
|
|
|
#include <osg/LightModel>
|
|
#include "ReadWrite.h"
|
|
|
|
namespace ive{
|
|
class LightModel : public osg::LightModel, public ReadWrite {
|
|
public:
|
|
void write(DataOutputStream* out);
|
|
void read(DataInputStream* in);
|
|
};
|
|
}
|
|
|
|
#endif
|