/* * This file is part of the DXX-Rebirth project . * It is copyright by its individual contributors, as recorded in the * project's Git history. See COPYING.txt at the top level for license * terms and a link to the Git history. */ #pragma once #include "pstypes.h" #include "palette.h" #include #include #include namespace dcx { void build_colormap_good(const palette_array_t &palette, std::array &colormap); void decode_data(std::span data, const std::array &colormap, std::bitset<256> &used); }