rpcsx/rpcs3/rpcs3qt/trophy_notification_helper.h
Nekotekina b7bf316c1a Don't randomly include "stdafx.h"
It's file for precompiled headers.
Include what is used, don't rely on transitive includes.
2020-12-22 14:32:30 +03:00

16 lines
434 B
C++

#pragma once
#include "util/types.hpp"
#include "Emu/Cell/Modules/sceNpTrophy.h"
#include <QWindow>
#include <vector>
class trophy_notification_helper : public TrophyNotificationBase
{
public:
trophy_notification_helper(QWindow* game_window) : m_game_window(game_window) { }
s32 ShowTrophyNotification(const SceNpTrophyDetails& trophy, const std::vector<uchar>& trophy_icon_buffer) override;
private:
QWindow* m_game_window;
};