diff options
Diffstat (limited to '')
-rw-r--r-- | lyt/materials/texcoordgen.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lyt/materials/texcoordgen.h b/lyt/materials/texcoordgen.h new file mode 100644 index 0000000..5e66b8e --- /dev/null +++ b/lyt/materials/texcoordgen.h @@ -0,0 +1,21 @@ +#ifndef LYTTEXCOORDGEN_H +#define LYTTEXCOORDGEN_H + +#include "../common.h" +#include <QtCore/QDataStream> + +class LYTTexCoordGen { +public: + LYTTexCoordGen(); + + void writeToDataStream(QDataStream &out); + void readFromDataStream(QDataStream &in); + + void dumpToDebug(); + + quint8 genType; + quint8 src; + quint8 mtx; +}; + +#endif // LYTTEXCOORDGEN_H |