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,12 +1,13 @@
#ifndef __INPUT_H__
#define __INPUT_H__
#include <string>
#include "constants.h"
enum game_command : int;
class input {
public:
virtual ~input() = default;
virtual game_command get_command() = 0;
virtual ~input() = default;
virtual game_command get_command() = 0;
};
game_command get_direction(std::string &str);