24 lines
627 B
C
24 lines
627 B
C
|
#pragma once
|
||
|
|
||
|
#include "meta/VersionList.h"
|
||
|
#include "ui/pages/modplatform/ResourcePackModel.h"
|
||
|
|
||
|
namespace ResourceDownload {
|
||
|
|
||
|
class TexturePackResourceModel : public ResourcePackResourceModel {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
TexturePackResourceModel(BaseInstance const& inst, ResourceAPI* api);
|
||
|
|
||
|
[[nodiscard]] inline ::Version maximumTexturePackVersion() const { return { "1.6" }; }
|
||
|
|
||
|
ResourceAPI::SearchArgs createSearchArguments() override;
|
||
|
ResourceAPI::VersionSearchArgs createVersionsArguments(QModelIndex&) override;
|
||
|
|
||
|
protected:
|
||
|
Meta::VersionList::Ptr m_version_list;
|
||
|
};
|
||
|
|
||
|
} // namespace ResourceDownload
|