added new flag -e for extra stuff (potions/races) IMPORTANT: main.cc is undergoing rework
18 lines
314 B
C++
18 lines
314 B
C++
#ifndef __CURSES_INPUT_H__
|
|
#define __CURSES_INPUT_H__
|
|
|
|
#include <memory>
|
|
#include "input.h"
|
|
#include "constants.h"
|
|
#include "cursor.h"
|
|
|
|
class curses_input final: public input {
|
|
private:
|
|
cursor *curse;
|
|
public:
|
|
curses_input(cursor *new_curse);
|
|
game_command get_command() override;
|
|
};
|
|
|
|
#endif
|