the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3
4// 4J-JEV: To help handle PsPlus upsells.
5class PsPlusUpsellWrapper
6{
7private:
8 bool m_bHasResponse;
9
10 SceNpCommerceDialogResult m_result;
11
12public:
13 const int m_userIndex;
14
15 PsPlusUpsellWrapper(int userIndex);
16
17 bool displayUpsell();
18
19 bool hasResponse();
20};