rpcsx/rpcs3/rpcs3qt/trophy_notification_frame.h
Robbie b0737d1c90 Make a basic trophy notification dialog (#3204)
* Make trophy notification dialog.

* Fix bug where trophy state doesn't persist with game reboot.
2017-10-24 18:43:05 +03:00

13 lines
300 B
C++

#pragma once
#include "stdafx.h"
#include "Emu/Memory/Memory.h"
#include "Emu/Cell/Modules/sceNpTrophy.h"
#include <QWidget>
class trophy_notification_frame : public QWidget
{
public:
trophy_notification_frame(const std::vector<uchar>& imgBuffer, const SceNpTrophyDetails& trophy, int height);
};