moving repo
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user