mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
14 lines
261 B
C++
14 lines
261 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);
|
|
};
|