#pragma once #ifndef MAP_H #define MAP_H // The player class Map { private: public: // Constructor Map(); // Destructor ~Map(); }; #endif