moving repo

This commit is contained in:
2024-07-05 00:46:02 -04:00
parent 325a1d1350
commit 7aed073fa6
11 changed files with 95 additions and 31 deletions

View File

@ -13,16 +13,16 @@
class game final {
private:
display &out;
cursor &curse;
cursor &curse;
feature features;
std::unique_ptr<RNG> rng;
std::unique_ptr<character> player;
std::vector<level> levels;
public:
game(cursor&new_curse,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;
int getcmd() const;
};
#endif