mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-01 06:10:00 +01:00
14 lines
264 B
C++
14 lines
264 B
C++
#pragma once
|
|
|
|
#include "Emu/Cell/Modules/sceNpTrophy.h"
|
|
|
|
#include <QWidget>
|
|
|
|
class trophy_notification_frame : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
trophy_notification_frame(const std::vector<uchar>& imgBuffer, const SceNpTrophyDetails& trophy, int height);
|
|
};
|