porymap/include/core/paletteutil.h
2025-04-15 17:10:32 -04:00

14 lines
296 B
C++

#pragma once
#ifndef PALETTEUTIL_H
#define PALETTEUTIL_H
#include <QList>
#include <QRgb>
namespace PaletteUtil {
QList<QRgb> parse(QString filepath, bool *error);
bool writeJASC(const QString &filepath, const QVector<QRgb> &colors, int offset, int nColors);
}
#endif // PALETTEUTIL_H