moving repo

This commit is contained in:
2024-07-04 19:58:19 -04:00
parent 6cbeb42144
commit c67dbcc62a
7 changed files with 70 additions and 18 deletions

View File

@ -4,6 +4,7 @@
#include <vector>
#include "constants.h"
#include "display.h"
#include "cursor.h"
#include "rng.h"
#include "characters.h"
#include "map.h"
@ -11,14 +12,17 @@
class game final {
private:
display &d;
display &out;
cursor &curse;
feature features;
std::unique_ptr<RNG> rng;
std::unique_ptr<character> player;
std::vector<level> levels;
public:
game(display &new_display, int argc, char **argv);
game(cursor&new_curse,display &new_display, int argc, char **argv);
game_status run();
private:
int getcmd() const;
};
#endif