summaryrefslogtreecommitdiffstats
path: root/pacman-c++/mainwidget.cpp
diff options
context:
space:
mode:
authortotycro <totycro@unknown-horizons.org>2011-04-05 01:18:26 +0200
committertotycro <totycro@unknown-horizons.org>2011-04-05 01:18:26 +0200
commit3dba415cd9741874cdaf0781d7e725808c8a2b8d (patch)
tree350ce31ea04fb9ed716a8969f329738f97c9063a /pacman-c++/mainwidget.cpp
parentb35be096423e89746d441cbf2333800f853c92fd (diff)
downloadfoop-3dba415cd9741874cdaf0781d7e725808c8a2b8d.tar.gz
foop-3dba415cd9741874cdaf0781d7e725808c8a2b8d.tar.bz2
foop-3dba415cd9741874cdaf0781d7e725808c8a2b8d.zip
Fixed a minor issue
Diffstat (limited to 'pacman-c++/mainwidget.cpp')
-rw-r--r--pacman-c++/mainwidget.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/pacman-c++/mainwidget.cpp b/pacman-c++/mainwidget.cpp
index 8dd1875..cc85416 100644
--- a/pacman-c++/mainwidget.cpp
+++ b/pacman-c++/mainwidget.cpp
@@ -56,6 +56,7 @@ transmission::map_t createDummyMap() {
56 56
57 map[5][5] |= blue; 57 map[5][5] |= blue;
58 map[5][5] |= transmission::pacman; 58 map[5][5] |= transmission::pacman;
59 map[5][5] |= transmission::direction_left;
59 60
60 return map; 61 return map;
61} 62}
@@ -115,8 +116,3 @@ QPoint MainWidget::mapPositionToCoord(unsigned int x, unsigned int y)
115 return QPoint(x * field_size[0], y * field_size[1]); 116 return QPoint(x * field_size[0], y * field_size[1]);
116} 117}
117 118
118Actor* MainWidget::getActor(Color color)
119{
120
121}
122