Files
cc3k/src/curses_input.h
Peisong Xiao c9e96b5e6e changed unique_ptr access to using raw pointers to denote non-ownership
added new flag -e for extra stuff (potions/races)
IMPORTANT: main.cc is undergoing rework
2024-07-12 09:58:30 -04:00

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