| 43 | const std::vector<PaletteEntry> &Palette::getEntries() const { return _entries; } |
| 44 | |
| 45 | size_t Palette::getEntryCount() const { return _entries.size(); } |
| 46 | |
| 47 | SDL_Color Palette::getSdlColor(const size_t index) const { return index == 0 ? SDL_Color{0, 0, 0, 0} : getEntry(index).getSdlColor(); } |
| 48 |