SVN_SILENT made messages (.desktop file)
[kdegames.git] / kollision / animator.h
blobf0ff90a35acb6fd54e19e15f860774fd2929bede
1 /*
2 Copyright (c) 2007 Paolo Capriotti <p.capriotti@gmail.com>
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8 */
10 #ifndef ANIMATOR_H
11 #define ANIMATOR_H
13 #include "animation.h"
14 #include <QTimer>
15 #include <QTime>
17 class Animator : public AnimationGroup
19 Q_OBJECT
20 QTimer m_timer;
21 QTime m_time;
22 public:
23 Animator();
25 void startTimer();
26 void stopTimer();
27 void add(Animation* a);
28 public slots:
29 void tick();
32 #endif // ANIMATOR_H