summaryrefslogtreecommitdiff
path: root/tools/src/asset_processor/assets/palette.h
blob: 10c36ac2a71732ac5388d04cb721224311db468f (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "asset.h"

class PaletteAsset : public BaseAsset {
  public:
    using BaseAsset::BaseAsset;
    virtual void convertToHumanReadable(const std::vector<char>& baserom);
    virtual void buildToBinary();

  private:
    virtual std::filesystem::path generateAssetPath();
};