added: input and its subclasses

This commit is contained in:
2024-07-04 22:47:25 -04:00
parent c67dbcc62a
commit f5b5f180a0
9 changed files with 245 additions and 18 deletions

View File

@ -1,11 +1,11 @@
#ifndef __INPUT_H__
#define __INPUT_H__
#include <string>
#include "cursor.h"
#include "constants.h"
class input{
public:
input(cursor &new_curse);
class input {
public:
virtual ~input() = 0;
virtual game_command get_command() = 0;
};
#endif