HDNes/hdnesPackEditor/paletteSwap.h

28 lines
529 B
C
Raw Permalink Normal View History

2018-04-04 13:13:38 -04:00
#ifndef PALETTESWAP_H
#define PALETTESWAP_H
#include "common.h"
class paletteSwap
{
public:
paletteSwap();
virtual ~paletteSwap();
string name;
vector<array<Uint8, 4>> orgPalettes;
vector<array<Uint8, 4>> newPalettes;
double brightness;
double hueRotation;
double saturation;
void load(fstream& file);
void save(fstream& file);
paletteSwap clone();
2018-04-04 13:13:38 -04:00
protected:
private:
};
#endif // PALETTESWAP_H