blob: 2e9db49cc1e875585f9ec16a15d687112fd3bd0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "asset.h"
class GfxAsset : public BaseAsset {
public:
using BaseAsset::BaseAsset;
virtual void convertToHumanReadable(const std::vector<char>& baserom);
virtual void buildToBinary();
private:
virtual std::filesystem::path generateAssetPath();
bool isCompressed();
};
|