fork download
  1. #include <random>
  2. #include <vector>
  3.  
  4. #include "Constants.h"
  5.  
  6. class Dungeon
  7. {
  8. private:
  9. std::vector<char> dirs;
  10. int x_pos, y_pos;
  11. int width, height;
  12. void genRoom(char** &);
  13. bool check(char**, char);
  14.  
  15. public:
  16. Dungeon();
  17. void genDungeon(char** &);
  18. };
  19.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:4:23: fatal error: Constants.h: No such file or directory
 #include "Constants.h"
                       ^
compilation terminated.
stdout
Standard output is empty