14 lines
133 B
C++
14 lines
133 B
C++
#ifndef MAP_H
|
|
#define MAP_H
|
|
|
|
#include "games.h"
|
|
|
|
class map
|
|
{
|
|
public:
|
|
map(games *parent);
|
|
QPixmap * background;
|
|
};
|
|
|
|
#endif // MAP_H
|