author | imm <imm> | 2002-08-31 22:00:08 (UTC) |
---|---|---|
committer | imm <imm> | 2002-08-31 22:00:08 (UTC) |
commit | 45c0bbbfb9eefb501a69cbdc5bd736b1d3376c22 (patch) (side-by-side diff) | |
tree | ef84efaf072d1285dcec669c8fc2bf334db04435 | |
parent | a6102be62cdbb8836c5c9a73ba64d62dbd821776 (diff) | |
download | opie-45c0bbbfb9eefb501a69cbdc5bd736b1d3376c22.zip opie-45c0bbbfb9eefb501a69cbdc5bd736b1d3376c22.tar.gz opie-45c0bbbfb9eefb501a69cbdc5bd736b1d3376c22.tar.bz2 |
- <memarray.h>
-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 ); }; }; |