2023-10-27 14:09:25 +02:00
|
|
|
#ifndef DEF_INPUT_H
|
|
|
|
#define DEF_INPUT_H
|
|
|
|
|
2023-11-10 17:35:33 +01:00
|
|
|
#include <string>
|
2023-11-15 13:48:40 +01:00
|
|
|
#include <vector>
|
2023-11-10 17:35:33 +01:00
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Retrieves user input
|
|
|
|
*/
|
2023-11-15 16:07:50 +01:00
|
|
|
vector<string> get_input(vector<string> history);
|
2023-10-27 14:09:25 +02:00
|
|
|
|
|
|
|
#endif
|