Files
tmc/tools/asset_processor/assets/aif.h
T
2021-11-07 18:38:04 +01:00

11 lines
276 B
C

#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();
};