working on changing the texture names to materials,

problems with call by value/reference
This commit is contained in:
Anakin
2017-01-15 12:26:15 +01:00
parent f469dff656
commit 6ead5d7bc6
8 changed files with 125 additions and 77 deletions

View File

@@ -5,6 +5,8 @@
#include <QStringList>
#include "ui_MainWindow.h"
struct Material;
class MainWindow : public QMainWindow
{
Q_OBJECT
@@ -28,7 +30,7 @@ private:
public slots:
void printMessage(QString message, int severity);
void setFileInfo(QString name, QStringList textures, int vertices, int triangle);
void setFileInfo(QString name, QVector<Material>* materials, int vertices, int triangle);
signals:
void loadFile(QString);