From 5f6dad55d75cbe146ff7fefc899a02ccd39078ba Mon Sep 17 00:00:00 2001 From: Treeki Date: Thu, 7 Oct 2010 15:56:13 +0200 Subject: initial commit -- everything compiles except for material.cpp. the material system still needs quite a bit of work; this will come in due time --- lyt/picture.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 lyt/picture.h (limited to 'lyt/picture.h') diff --git a/lyt/picture.h b/lyt/picture.h new file mode 100644 index 0000000..8242c34 --- /dev/null +++ b/lyt/picture.h @@ -0,0 +1,27 @@ +#ifndef LYTPICTURE_H +#define LYTPICTURE_H + +#include +#include + +#include "common.h" +#include "pane.h" + +class LYTPicture : public LYTPane { +public: + LYTPicture(LYTLayout &layout); + + + void writeToDataStream(QDataStream &out); + void readFromDataStream(QDataStream &in); + + void dumpToDebug(bool showHeading=true); + + QColor vtxColours[4]; + QString materialName; + + QVector texCoords; +}; + + +#endif // LYTPICTURE_H -- cgit v1.2.3