4ccfa0cc56
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
12 lines
167 B
C++
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;
|
|
};
|