You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
notcurses/include/ncpp/NCScale.hh

16 lines
217 B
C++

#ifndef __NCPP_NCSCALE_HH
#define __NCPP_NCSCALE_HH
#include <notcurses/notcurses.h>
namespace ncpp
{
enum class NCScale
{
None = NCSCALE_NONE,
Scale = NCSCALE_SCALE,
Stretch = NCSCALE_STRETCH,
};
}
#endif