|
Revision 13041, 294 bytes
(checked in by robert, 15 months ago)
|
|
Ran script to remove trailing spaces and tabs
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | #ifndef IVE_TEXTURECUBEMAP |
|---|
| 2 | #define IVE_TEXTURECUBEMAP 1 |
|---|
| 3 | |
|---|
| 4 | #include <osg/TextureCubeMap> |
|---|
| 5 | #include "ReadWrite.h" |
|---|
| 6 | |
|---|
| 7 | namespace ive |
|---|
| 8 | { |
|---|
| 9 | |
|---|
| 10 | class TextureCubeMap : public osg::TextureCubeMap, public ReadWrite |
|---|
| 11 | { |
|---|
| 12 | public: |
|---|
| 13 | void write(DataOutputStream* out); |
|---|
| 14 | void read(DataInputStream* in); |
|---|
| 15 | }; |
|---|
| 16 | } |
|---|
| 17 | |
|---|
| 18 | #endif |
|---|