finished the bulk of game

This commit is contained in:
2024-07-14 21:32:41 -04:00
parent b3475b7530
commit af8bc4112c
110 changed files with 1876 additions and 1481 deletions

View File

@ -1,16 +0,0 @@
#ifndef __CONSOLE_INPUT_H__
#define __CONSOLE_INPUT_H__
#include <iostream>
#include "input.h"
class console_input final : public input {
private:
std::istream &in;
public:
// This is for cin
console_input(std::istream &cin);
game_command get_command() override;
};
#endif