porymap/include/core/paletteutil.h

14 lines
282 B
C
Raw Normal View History

2020-09-13 23:37:55 +01:00
#pragma once
#ifndef PALETTEUTIL_H
#define PALETTEUTIL_H
#include <QList>
#include <QRgb>
2021-02-18 08:25:26 +00:00
namespace PaletteUtil {
QList<QRgb> parse(QString filepath, bool *error);
void writeJASC(QString filepath, QVector<QRgb> colors, int offset, int nColors);
2021-02-18 08:25:26 +00:00
}
#endif // PALETTEUTIL_H