LeviLamina
Loading...
Searching...
No Matches
AcceptDeclineInvitationScreenController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/DirtyFlag.h"
7#include "mc/client/gui/screens/controllers/MinecraftScreenController.h"
8
9// auto generated forward declare list
10// clang-format off
13// clang-format on
14
16public:
17 // AcceptDeclineInvitationScreenController inner types define
18 enum class AcceptDeclineInvitationState : uchar {
19 DisplayAcceptDeclineModal = 0,
20 WaitingForAcceptDeclineModalResult = 1,
21 CheckPlatformMultiplayerRestriction = 2,
22 WaitingForPlatformUpsellResult = 3,
23 SendResult = 4,
24 Exit = 5,
25 Complete = 6,
26 };
27
28public:
29 // member variables
30 // NOLINTBEGIN
31 ::ll::TypedStorage<8, 32, ::std::string> mTitle;
32 ::ll::TypedStorage<8, 32, ::std::string> mSubtitle;
33 ::ll::TypedStorage<8, 64, ::std::function<void(bool, bool)>> mCallback;
34 ::ll::TypedStorage<1, 1, ::AcceptDeclineInvitationScreenController::AcceptDeclineInvitationState> mState;
35 ::ll::TypedStorage<1, 1, bool> mAcceptDeclineModalAccepted;
36 ::ll::TypedStorage<1, 1, bool> mAcceptDeclineModalCancelled;
37 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::PlatformMultiplayerRestrictions>> mPlatformMultiplayerRestrictions;
38 // NOLINTEND
39
40public:
41 // prevent constructor by default
42 AcceptDeclineInvitationScreenController();
43
44public:
45 // virtual functions
46 // NOLINTBEGIN
47 virtual ~AcceptDeclineInvitationScreenController() /*override*/;
48
49 virtual ::ui::DirtyFlag tick() /*override*/;
50
51 virtual void addEventProperties(::std::unordered_map<::std::string, ::std::string>&) const /*override*/;
52
53 virtual ::std::string getAdditionalScreenInfo() const /*override*/;
54
55 virtual ::std::string getTelemetryOverride() const /*override*/;
56 // NOLINTEND
57
58public:
59 // member functions
60 // NOLINTBEGIN
61 MCAPI AcceptDeclineInvitationScreenController(
62 ::std::shared_ptr<::MinecraftScreenModel> model,
63 ::std::string const& title,
64 ::std::string const& subtitle,
65 ::std::function<void(bool, bool)> callback
66 );
67 // NOLINTEND
68
69public:
70 // constructor thunks
71 // NOLINTBEGIN
72 MCAPI void* $ctor(
73 ::std::shared_ptr<::MinecraftScreenModel> model,
74 ::std::string const& title,
75 ::std::string const& subtitle,
76 ::std::function<void(bool, bool)> callback
77 );
78 // NOLINTEND
79
80public:
81 // destructor thunk
82 // NOLINTBEGIN
83 MCAPI void $dtor();
84 // NOLINTEND
85
86public:
87 // virtual function thunks
88 // NOLINTBEGIN
89 MCAPI ::ui::DirtyFlag $tick();
90
91 MCFOLD void $addEventProperties(::std::unordered_map<::std::string, ::std::string>&) const;
92
93 MCFOLD ::std::string $getAdditionalScreenInfo() const;
94
95 MCAPI ::std::string $getTelemetryOverride() const;
96 // NOLINTEND
97
98public:
99 // vftables
100 // NOLINTBEGIN
101 MCNAPI static void** $vftableForScreenController();
102
104 // NOLINTEND
105};
Definition AcceptDeclineInvitationScreenController.h:5
static MCAPI void ** $vftableForScreenController()
static MCAPI void ** $vftableForEnableNonOwnerReferences()
Definition MinecraftScreenController.h:5
Definition MinecraftScreenModel.h:5
Definition PlatformMultiplayerRestrictions.h:5