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