minecraft-launcher/app/screenshots/Screenshot.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
308 B
C
Raw Normal View History

#pragma once
#include <QDateTime>
#include <QFileInfo>
#include <QString>
#include <memory>
struct ScreenShot {
using Ptr = std::shared_ptr<ScreenShot>;
ScreenShot(QFileInfo file) { m_file = file; }
QFileInfo m_file;
QString m_url;
QString m_imgurId;
QString m_imgurDeleteHash;
};