-rw-r--r-- | noncore/games/zbounce/game.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/noncore/games/zbounce/game.h b/noncore/games/zbounce/game.h index ae0d4fa..656fba3 100644 --- a/noncore/games/zbounce/game.h +++ b/noncore/games/zbounce/game.h @@ -18,13 +18,12 @@ #ifndef GAME_H_INCLUDED #define GAME_H_INCLUDED #include <qwidget.h> #include <qcanvas.h> -#include <qmemarray.h> class QTimer; class JezzField; #define FIELD_WIDTH 26 #define FIELD_HEIGHT 26 @@ -100,13 +99,12 @@ public: signals: void ballCollision( Ball *ball, int x, int y, int tile ); private: friend class Ball; QPixmap m_tiles; - QMemArray<QPixmap> m_backTiles; void setPixmaps( QPixmap tiles ); void emitBallCollisiton( Ball *ball, int x, int y, int tile ) { emit ballCollision( ball, x, y, tile ); }; }; |