diff options
Diffstat (limited to '')
-rw-r--r-- | lyt/materials/texsrt.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lyt/materials/texsrt.h b/lyt/materials/texsrt.h new file mode 100644 index 0000000..ad5e470 --- /dev/null +++ b/lyt/materials/texsrt.h @@ -0,0 +1,23 @@ +#ifndef LYTTEXSRT_H +#define LYTTEXSRT_H + +#include "../common.h" +#include <QtCore/QDataStream> + +class LYTTexSRT { +public: + LYTTexSRT(); + + void writeToDataStream(QDataStream &out); + void readFromDataStream(QDataStream &in); + + void dumpToDebug(); + + float xTrans; + float yTrans; + float rotate; + float xScale; + float yScale; +}; + +#endif // LYTTEXSRT_H |