LeviLamina
Loading...
Searching...
No Matches
ClientEventCoordinatorManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/NonOwnerPointer.h"
7#include "mc/deps/core/utility/UniqueOwnerPointer.h"
8#include "mc/world/level/EventCoordinatorManager.h"
9
10// auto generated forward declare list
11// clang-format off
16// clang-format on
17
18class ClientEventCoordinatorManager : public ::EventCoordinatorManager {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 16, ::gsl::not_null<::Bedrock::UniqueOwnerPointer<::ClientLevelEventCoordinator>>>
23 mClientLevelEventCoordinator;
24 ::ll::TypedStorage<8, 16, ::gsl::not_null<::Bedrock::UniqueOwnerPointer<::PlayerEventCoordinator>>>
25 mRemotePlayerEventCoordinator;
26 ::ll::TypedStorage<8, 16, ::gsl::not_null<::Bedrock::UniqueOwnerPointer<::ClientPlayerEventCoordinator>>>
27 mClientPlayerEventCoordinator;
28 // NOLINTEND
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~ClientEventCoordinatorManager() /*override*/;
34
35 virtual ::Bedrock::NonOwnerPointer<::PlayerEventCoordinator> getRemotePlayerEventCoordinator() /*override*/;
36
37 virtual ::Bedrock::NonOwnerPointer<::ClientPlayerEventCoordinator> getClientPlayerEventCoordinator() /*override*/;
38
39 virtual ::Bedrock::NotNullNonOwnerPtr<::LevelEventCoordinator> getLevelEventCoordinator() /*override*/;
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCNAPI void* $ctor();
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCNAPI void $dtor();
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCNAPI ::Bedrock::NonOwnerPointer<::PlayerEventCoordinator> $getRemotePlayerEventCoordinator();
64
65 MCNAPI ::Bedrock::NonOwnerPointer<::ClientPlayerEventCoordinator> $getClientPlayerEventCoordinator();
66
67 MCNAPI ::Bedrock::NotNullNonOwnerPtr<::LevelEventCoordinator> $getLevelEventCoordinator();
68
69
70 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCNAPI static void** $vftable();
76 // NOLINTEND
77};
MCAPI ::Bedrock::NotNullNonOwnerPtr<::LevelEventCoordinator > $getLevelEventCoordinator()
static MCAPI void ** $vftable()
MCAPI ::Bedrock::NonOwnerPointer<::PlayerEventCoordinator > $getRemotePlayerEventCoordinator()
MCAPI ::Bedrock::NonOwnerPointer<::ClientPlayerEventCoordinator > $getClientPlayerEventCoordinator()
Definition ClientLevelEventCoordinator.h:8
Definition ClientPlayerEventCoordinator.h:23
Definition LevelEventCoordinator.h:27
Definition PlayerEventCoordinator.h:28