This commit is contained in:
Herwig Birke
2018-04-26 14:01:03 +02:00
parent 7fb7dcb381
commit 40d5eb5a05
14 changed files with 627 additions and 326 deletions
+10 -1
View File
@@ -1,7 +1,12 @@
#ifndef CCHARACTERWINDOW_H
#define CCHARACTERWINDOW_H
#include "ccharacter.h"
#include <QWidget>
#include <QStandardItemModel>
namespace Ui {
class cCharacterWindow;
@@ -15,8 +20,12 @@ public:
explicit cCharacterWindow(QWidget *parent = 0);
~cCharacterWindow();
void setCharacter(cCharacter* lpCharacter);
cCharacter* character();
private:
Ui::cCharacterWindow *ui;
Ui::cCharacterWindow* ui;
cCharacter* m_lpCharacter;
};
#endif // CCHARACTERWINDOW_H