mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-05-20 00:07:15 +02:00
16 lines
217 B
C++
16 lines
217 B
C++
#pragma once
|
|
|
|
#include <QDateTime>
|
|
#include <QString>
|
|
#include <memory>
|
|
|
|
struct ScreenShot
|
|
{
|
|
QDateTime timestamp;
|
|
QString file;
|
|
QString url;
|
|
QString imgurId;
|
|
};
|
|
|
|
typedef std::shared_ptr<ScreenShot> ScreenshotPtr;
|