mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-22 01:54:46 -05:00
14 lines
296 B
C++
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
|