added animation

but not full in ADeditor
This commit is contained in:
2010-09-05 16:25:23 +04:00
parent c898f978da
commit 8fa6b8e2a6
24 changed files with 924 additions and 725 deletions

View File

@@ -6,18 +6,18 @@
class AlienModel : public QAbstractListModel
{
Q_OBJECT
Q_OBJECT
public:
explicit AlienModel(QList<tbAlien> aliens, QObject *parent = 0);
explicit AlienModel(QList<tbAlien> aliens, QObject *parent = 0);
int rowCount(const QModelIndex &parent = QModelIndex()) const;
QVariant data(const QModelIndex &index, int role) const;
void refresh(QList<tbAlien> aliens);
void refresh(QList<tbAlien> aliens);
signals:
public slots:
private:
QList<tbAlien> aliens;
QList<tbAlien> aliens;
};
#endif // ALIENMODEL_H