added files

This commit is contained in:
Max-Wilhelm Bruker 2009-08-13 12:58:36 +02:00
parent cd6c5108af
commit 17c7dfda41
2 changed files with 64 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#ifndef PHASESTOOLBAR_H
#define PHASESTOOLBAR_H
#include <QFrame>
class PhasesToolbar : public QFrame {
Q_OBJECT
public:
PhasesToolbar(QWidget *parent = 0);
private:
QAction *aUntap, *aUpkeep, *aDraw, *aMain1, *aCombat, *aMain2, *aCleanup;
};
#endif