38efb23901
osgFX::Effect osgFX::AnisotropicLighting osgFX::BumpMapping osgFX::Cartoon osgFX::Scribe osgFX::SpecularHighlights.
16 lines
316 B
C++
16 lines
316 B
C++
#ifndef IVE_SPECULARHIGHLIGHTS
|
|
#define IVE_SPECULARHIGHLIGHTS 1
|
|
|
|
#include <osgFX/SpecularHighlights>
|
|
#include "ReadWrite.h"
|
|
|
|
namespace ive{
|
|
class SpecularHighlights : public osgFX::SpecularHighlights, public ReadWrite {
|
|
public:
|
|
void write(DataOutputStream* out);
|
|
void read(DataInputStream* in);
|
|
};
|
|
}
|
|
|
|
#endif
|