mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-18 11:06:15 +00:00
d2c3efac83
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
29 lines
384 B
C++
29 lines
384 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <cstdint>
|
|
|
|
namespace EightBit {
|
|
namespace GameBoy {
|
|
class AbstractColourPalette {
|
|
public:
|
|
enum {
|
|
Off,
|
|
Light,
|
|
Medium,
|
|
Dark
|
|
};
|
|
|
|
AbstractColourPalette()
|
|
: m_colours(4) {
|
|
}
|
|
|
|
uint32_t getColour(size_t index) const {
|
|
return m_colours[index];
|
|
}
|
|
|
|
protected:
|
|
std::vector<uint32_t> m_colours;
|
|
};
|
|
}
|
|
} |