diff --git a/src/Application/Graphics/Palette.h b/src/Application/Graphics/Palette.h deleted file mode 100644 index 8a96b1fe..00000000 --- a/src/Application/Graphics/Palette.h +++ /dev/null @@ -1,48 +0,0 @@ -#ifndef YAZE_APPLICATION_GRAPHICS_PALETTE_H -#define YAZE_APPLICATION_GRAPHICS_PALETTE_H - -#include -#include -#include -#include - -#include -#include -#include - -namespace yaze { -namespace Application { -namespace Graphics { - -struct SNESColor { - SNESColor(); - SNESColor(ImVec4); - uint16_t snes; - ImVec4 rgb; - void setRgb(ImVec4); - void setSNES(uint16_t); - uint8_t approxSNES(); - ImVec4 approxRGB(); -}; - -class SNESPalette { - public: - SNESPalette(); - SNESPalette(uint8_t mSize); - SNESPalette(char* snesPal); - SNESPalette(std::vector); - - char* encode(); - SDL_Palette* GetSDL_Palette(); - - uint8_t size; - std::vector colors; - std::vector sdl_palettes_; - std::vector colors_arrays_; -}; - -} // namespace Graphics -} // namespace Application -} // namespace yaze - -#endif // YAZE_APPLICATION_GRAPHICS_PALETTE_H \ No newline at end of file