#include <random>
#include <vector>

#include "Constants.h"

class Dungeon
{
    private:
        std::vector<char> dirs;
        int x_pos, y_pos;
        int width, height;
        void genRoom(char** &);
        bool check(char**, char);

    public:
        Dungeon();
        void genDungeon(char** &);
};
