LeviLamina
Loading...
Searching...
No Matches
StoreListener.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7struct ProductInfo;
8struct ProductSku;
9struct PurchaseInfo;
10// clang-format on
11
13public:
14 // virtual functions
15 // NOLINTBEGIN
16 // vIndex: 0
17 virtual ~StoreListener() = default;
18
19 // vIndex: 1
20 virtual void onStoreInitialized(bool) = 0;
21
22 // vIndex: 2
23 virtual void setStoreAvailable(bool) = 0;
24
25 // vIndex: 3
26 virtual void onQueryProductsSuccess(::std::vector<::ProductInfo> const&) = 0;
27
28 // vIndex: 4
29 virtual void onQueryProductsFail() = 0;
30
31 // vIndex: 5
32 virtual void onPurchaseSuccessful(::PurchaseInfo const&) = 0;
33
34 // vIndex: 6
35 virtual void onPurchaseCanceled(::ProductSku const&) = 0;
36
37 // vIndex: 7
38 virtual void onPurchaseFailed(::ProductSku const&) = 0;
39
40 // vIndex: 8
41 virtual void onPurchasePending(::ProductSku const&) = 0;
42
43 // vIndex: 9
44 virtual void onQueryPurchasesSuccess(::std::vector<::PurchaseInfo> const&) = 0;
45
46 // vIndex: 10
47 virtual void onQueryPurchasesFail() = 0;
48
49 // vIndex: 11
50 virtual void onAppPurchaseSuccess() = 0;
51
52 // vIndex: 12
53 virtual void onAppPurchaseFailed() = 0;
54
55 // vIndex: 13
56 virtual void onAppPurchaseCanceled() = 0;
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68
69 // NOLINTEND
70};
Definition StoreListener.h:12
Definition ProductInfo.h:5
Definition ProductSku.h:8
Definition PurchaseInfo.h:5