LeviLamina
Loading...
Searching...
No Matches
PlatformStoreIconModel.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/common/SubClientId.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Bedrock::Threading { class Mutex; }
11// clang-format on
12
14public:
15 // PlatformStoreIconModel inner types declare
16 // clang-format off
18 // clang-format on
19
20 // PlatformStoreIconModel inner types define
22 public:
23 // member variables
24 // NOLINTBEGIN
25 ::ll::TypedStorage<1, 1, bool> mIsInGameBrowsing;
26 ::ll::TypedStorage<1, 1, bool> mIsCheckoutInProgress;
27 // NOLINTEND
28 };
29
30public:
31 // member variables
32 // NOLINTBEGIN
33 ::ll::TypedStorage<1, 1, ::SubClientId> mSubClientId;
34 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::PlatformStoreIconModel::PlatformStoreIconVisibility>> mIconVisibility;
35 // NOLINTEND
36
37public:
38 // prevent constructor by default
39 PlatformStoreIconModel();
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI explicit PlatformStoreIconModel(::SubClientId subClientId);
45
46 MCAPI void _updatePlatformStoreIcon();
47
48 MCAPI void setIsCheckoutInProgress(bool isCheckoutInProgress);
49
50 MCAPI void setIsInGameBrowsing(bool isInGameBrowsing);
51
52 MCAPI ~PlatformStoreIconModel();
53 // NOLINTEND
54
55public:
56 // static functions
57 // NOLINTBEGIN
58 MCAPI static bool isIconVisible();
59 // NOLINTEND
60
61public:
62 // static variables
63 // NOLINTBEGIN
64 MCAPI static bool& sIsIconVisible();
65
66 MCAPI static ::std::
67 unordered_map<::SubClientId, ::std::vector<::PlatformStoreIconModel::PlatformStoreIconVisibility*>>&
68 sPlatformStoreIconVisibilityStacks();
69
70 MCAPI static ::Bedrock::Threading::Mutex& sStacksMutex();
71 // NOLINTEND
72
73public:
74 // constructor thunks
75 // NOLINTBEGIN
76 MCAPI void* $ctor(::SubClientId subClientId);
77 // NOLINTEND
78
79public:
80 // destructor thunk
81 // NOLINTBEGIN
82 MCAPI void $dtor();
83 // NOLINTEND
84};
Definition Mutex.h:10
Definition PlatformStoreIconModel.h:5
Definition PlatformStoreIconModel.h:13