summaryrefslogtreecommitdiffstats
path: root/pacman-c++/mainwidget.h
blob: d1ec76190dd52cfc085cd848a11456e858e85924 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef MAINWIDGET_H
#define MAINWIDGET_H

#include <QtGui>

class MainWidget
  : public QWidget
{
  Q_OBJECT

public:
  MainWidget();

private:
  void loadDummyMap();

  QGraphicsScene *scene;
};

#endif // MAINWIDGET_H