LeviLamina
Loading...
Searching...
No Matches
VenueConnectProgressHandler.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/world/actor/player/LoadingState.h"
8
9// auto generated forward declare list
10// clang-format off
12struct Venue;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 32, ::std::string> mGatheringId;
20 ::ll::TypedStorage<8, 64, ::std::function<void()>> mCancelCallback;
21 ::ll::TypedStorage<8, 64, ::std::function<void(bool, ::Venue)>> mCompleteCallback;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 VenueConnectProgressHandler();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual ~VenueConnectProgressHandler() /*override*/ = default;
32
33 virtual void onStart(::MinecraftScreenModel& minecraftScreenModel) /*override*/;
34
35 virtual void onCancel(::MinecraftScreenModel& minecraftScreenModel) /*override*/;
36
37 virtual ::LoadingState getLoadingState(::MinecraftScreenModel& minecraftScreenModel) const /*override*/;
38
39 virtual ::std::string getName() const /*override*/;
40
41 virtual ::std::string getTitleText() const /*override*/;
42 // NOLINTEND
43
44public:
45 // member functions
46 // NOLINTBEGIN
47 MCAPI VenueConnectProgressHandler(
48 ::std::string const& gatheringId,
49 ::std::function<void(bool, ::Venue)> completeCallback,
50 ::std::function<void()> cancelCallback
51 );
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57 MCAPI void* $ctor(
58 ::std::string const& gatheringId,
59 ::std::function<void(bool, ::Venue)> completeCallback,
60 ::std::function<void()> cancelCallback
61 );
62 // NOLINTEND
63
64public:
65 // virtual function thunks
66 // NOLINTBEGIN
67 MCAPI void $onStart(::MinecraftScreenModel& minecraftScreenModel);
68
69 MCAPI void $onCancel(::MinecraftScreenModel& minecraftScreenModel);
70
71 MCFOLD ::LoadingState $getLoadingState(::MinecraftScreenModel& minecraftScreenModel) const;
72
73 MCAPI ::std::string $getName() const;
74
75 MCAPI ::std::string $getTitleText() const;
76 // NOLINTEND
77
78public:
79 // vftables
80 // NOLINTBEGIN
81 MCNAPI static void** $vftable();
82 // NOLINTEND
83};
Definition EmptyProgressHandler.h:5
Definition MinecraftScreenModel.h:5
Definition VenueConnectProgressHandler.h:5
static MCAPI void ** $vftable()
Definition Venue.h:5