blob: 0e80e9bde804d840bf51feaf7ee86d8d93f3164a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "asset.h"
class SubTileSetAsset : 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();
};
|