mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
18 lines
280 B
C++
18 lines
280 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
struct BEColorTableItem;
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
struct RGBAColor;
|
|
|
|
class CTabReducer
|
|
{
|
|
public:
|
|
static uint8_t DecodeClutItemChannel(const uint8_t *color16);
|
|
static RGBAColor DecodeClutItem(const BEColorTableItem &clutItem);
|
|
};
|
|
}
|