summaryrefslogtreecommitdiff
path: root/noncore/games
authorimm <imm>2002-08-31 22:00:08 (UTC)
committer imm <imm>2002-08-31 22:00:08 (UTC)
commit45c0bbbfb9eefb501a69cbdc5bd736b1d3376c22 (patch) (side-by-side diff)
treeef84efaf072d1285dcec669c8fc2bf334db04435 /noncore/games
parenta6102be62cdbb8836c5c9a73ba64d62dbd821776 (diff)
downloadopie-45c0bbbfb9eefb501a69cbdc5bd736b1d3376c22.zip
opie-45c0bbbfb9eefb501a69cbdc5bd736b1d3376c22.tar.gz
opie-45c0bbbfb9eefb501a69cbdc5bd736b1d3376c22.tar.bz2
- <memarray.h>
Diffstat (limited to 'noncore/games') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/zbounce/game.h2
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
@@ -12,25 +12,24 @@
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free
* 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
{
public:
Arrow(QCanvasPixmapArray* array, QCanvas* canvas);
@@ -94,25 +93,24 @@ class JezzField : public QCanvas
Q_OBJECT
public:
JezzField( QPixmap tiles, QObject* parent = 0, const char* name = 0 );
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 ); };
};
class JezzView : public QCanvasView
{
Q_OBJECT
public: