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

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

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