LeviLamina
Loading...
Searching...
No Matches
DifferencePromptProfileEntryPromptData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/screens/managers/IProfileEntryPromptData.h"
7#include "mc/deps/core/utility/NonOwnerPointer.h"
8
9// auto generated forward declare list
10// clang-format off
12struct PersonaProfile;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::MinecraftScreenController>> mScreenController;
20 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::PersonaProfile>> mPersonaProfile;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 DifferencePromptProfileEntryPromptData();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual ~DifferencePromptProfileEntryPromptData() /*override*/ = default;
31
32 virtual bool allowedToOpenCheck() const /*override*/;
33
34 virtual void callOnOpen() /*override*/;
35
36 virtual void callOnClose() /*override*/;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI DifferencePromptProfileEntryPromptData(
43 ::Bedrock::NotNullNonOwnerPtr<::MinecraftScreenController> screenController,
44 ::std::shared_ptr<::PersonaProfile> personaProfile
45 );
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCAPI void* $ctor(
52 ::Bedrock::NotNullNonOwnerPtr<::MinecraftScreenController> screenController,
53 ::std::shared_ptr<::PersonaProfile> personaProfile
54 );
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCAPI bool $allowedToOpenCheck() const;
61
62 MCAPI void $callOnOpen();
63
64 MCAPI void $callOnClose();
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCNAPI static void** $vftable();
71 // NOLINTEND
72};
Definition DifferencePromptProfileEntryPromptData.h:5
Definition IProfileEntryPromptData.h:5
Definition MinecraftScreenController.h:5
Definition PersonaProfile.h:5