blob: ad5e470b1933b269cf963459b6e0ddb28a977e9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
|