-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 @@ -16,17 +16,16 @@ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #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 class Arrow : public QCanvasSprite @@ -98,17 +97,16 @@ public: void setGameTile( int x, int y, bool black ); 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 ); }; }; |