mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-06 03:20:26 +00:00
17 lines
376 B
C++
17 lines
376 B
C++
#ifndef __NCPP_INPUT_HH
|
|
#define __NCPP_INPUT_HH
|
|
|
|
#include <notcurses/notcurses.h>
|
|
|
|
namespace ncpp
|
|
{
|
|
struct EvType
|
|
{
|
|
static constexpr unsigned Silent = ncinput::NCTYPE_UNKNOWN;
|
|
static constexpr unsigned Press = ncinput::NCTYPE_PRESS;
|
|
static constexpr unsigned Repeat = ncinput::NCTYPE_REPEAT;
|
|
static constexpr unsigned Release = ncinput::NCTYPE_RELEASE;
|
|
};
|
|
}
|
|
#endif
|