notcurses/include/ncpp/NCScale.hh
2020-01-22 06:47:43 -05:00

16 lines
207 B
C++

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