17 lines
260 B
C++
17 lines
260 B
C++
#ifndef IVE_POINTSPRITE
|
|
#define IVE_POINTSPRITE 1
|
|
|
|
#include <osg/PointSprite>
|
|
#include "ReadWrite.h"
|
|
|
|
namespace ive{
|
|
class PointSprite : public osg::PointSprite {
|
|
public:
|
|
void write(DataOutputStream* out);
|
|
void read(DataInputStream* in);
|
|
};
|
|
}
|
|
|
|
#endif
|
|
|