renamed display to output

This commit is contained in:
2024-07-15 16:49:18 -04:00
parent 73cdb88458
commit fb026e36a8
43 changed files with 49 additions and 341 deletions

View File

@ -2,7 +2,7 @@
#define __GAME_H__
#include <memory>
#include <vector>
#include "display.h"
#include "output.h"
#include "input.h"
#include "rng.h"
#include "characters.h"
@ -22,7 +22,7 @@ private:
const feature enabled_features;
input *in;
display *out;
output *out;
RNG *rng;
unsigned int curr_turn;
@ -42,7 +42,7 @@ public:
game(const enum race starting_race,
const feature enabled_features,
input *new_in,
display *new_out,
output *new_out,
RNG *new_rng);
game_result run();
size_t get_curr_level() const;