summaryrefslogtreecommitdiffstats
path: root/mazescene.h
diff options
context:
space:
mode:
Diffstat (limited to 'mazescene.h')
-rw-r--r--mazescene.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/mazescene.h b/mazescene.h
index 6bdf817..5d7e4de 100644
--- a/mazescene.h
+++ b/mazescene.h
@@ -70,6 +70,7 @@ private slots:
private:
QVector<WallItem *> m_walls;
QVector<WallItem *> m_doors;
+ QVector<QGraphicsItem *> m_floorTiles;
QPointF m_cameraPos;
qreal m_cameraAngle;
@@ -81,4 +82,6 @@ private:
long m_simulationTime;
long m_walkTime;
bool m_dirty;
+ int m_width;
+ int m_height;
};