AppleWin/source/frontends/ncurses/colors.h
Andrea Odetti 4ccfa0cc56 Add support for Low Resolution graphics.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2017-10-14 19:18:44 +01:00

12 lines
167 B
C++

#pragma once
class GRColors
{
public:
GRColors(const int firstColor, const int firstPair);
int getPair(int color) const;
private:
const int myFirstPair;
};