LeviLamina
Loading...
Searching...
No Matches
PartyEligibilityProgressHandler.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/EmptyProgressHandler.h"
7#include "mc/client/gui/GameEventNotification.h"
8#include "mc/world/actor/player/LoadingState.h"
9
10// auto generated forward declare list
11// clang-format off
13class TaskGroup;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::TaskGroup>> mAsyncTaskGroup;
21 ::ll::TypedStorage<8, 32, ::std::string> mExperienceId;
22 ::ll::TypedStorage<8, 32, ::std::string> mPartyId;
23 ::ll::TypedStorage<8, 40, ::std::optional<::std::string>> mWorldId;
24 ::ll::TypedStorage<1, 1, bool> mContinuePartyJoin;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 PartyEligibilityProgressHandler();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual void onStart(::MinecraftScreenModel& minecraftScreenModel) /*override*/;
35
36 virtual void onCancel(::MinecraftScreenModel& minecraftScreenModel) /*override*/;
37
38 virtual ::LoadingState getLoadingState(::MinecraftScreenModel& minecraftScreenModel) const /*override*/;
39
40 virtual ::std::string getName() const /*override*/;
41
42 virtual ::std::string getTitleText() const /*override*/;
43
44 virtual void
45 onGameEventNotification(::MinecraftScreenModel&, ::ui::GameEventNotification const& notification) /*override*/;
46
47 virtual ~PartyEligibilityProgressHandler() /*override*/;
48 // NOLINTEND
49
50public:
51 // member functions
52 // NOLINTBEGIN
53 MCAPI PartyEligibilityProgressHandler(
54 ::std::string const& experienceId,
55 ::std::string const& partyId,
56 ::std::optional<::std::string> worldId
57 );
58 // NOLINTEND
59
60public:
61 // constructor thunks
62 // NOLINTBEGIN
63 MCAPI void*
64 $ctor(::std::string const& experienceId, ::std::string const& partyId, ::std::optional<::std::string> worldId);
65 // NOLINTEND
66
67public:
68 // destructor thunk
69 // NOLINTBEGIN
70 MCAPI void $dtor();
71 // NOLINTEND
72
73public:
74 // virtual function thunks
75 // NOLINTBEGIN
76 MCAPI void $onStart(::MinecraftScreenModel& minecraftScreenModel);
77
78 MCAPI void $onCancel(::MinecraftScreenModel& minecraftScreenModel);
79
80 MCAPI ::LoadingState $getLoadingState(::MinecraftScreenModel& minecraftScreenModel) const;
81
82 MCAPI ::std::string $getName() const;
83
84 MCAPI ::std::string $getTitleText() const;
85
86 MCAPI void $onGameEventNotification(::MinecraftScreenModel&, ::ui::GameEventNotification const& notification);
87 // NOLINTEND
88
89public:
90 // vftables
91 // NOLINTBEGIN
92 MCNAPI static void** $vftable();
93 // NOLINTEND
94};
Definition EmptyProgressHandler.h:5
Definition MinecraftScreenModel.h:5
Definition PartyEligibilityProgressHandler.h:5
static MCAPI void ** $vftable()
Definition TaskGroup.h:57