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
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 // vIndex: 0
34 virtual ~ClientEventCoordinatorManager() /*override*/ = default;
35
36 // vIndex: 1
37 virtual ::Bedrock::NonOwnerPointer<::PlayerEventCoordinator> getRemotePlayerEventCoordinator() /*override*/;
38
39 // vIndex: 2
40 virtual ::Bedrock::NonOwnerPointer<::ClientPlayerEventCoordinator> getClientPlayerEventCoordinator() /*override*/;
41
42 // vIndex: 4
43 virtual ::Bedrock::NotNullNonOwnerPtr<::LevelEventCoordinator> getLevelEventCoordinator() /*override*/;
44 // NOLINTEND
45
46public:
47 // member functions
48 // NOLINTBEGIN
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCNAPI void* $ctor();
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCNAPI ::Bedrock::NonOwnerPointer<::PlayerEventCoordinator> $getRemotePlayerEventCoordinator();
62
63 MCNAPI ::Bedrock::NonOwnerPointer<::ClientPlayerEventCoordinator> $getClientPlayerEventCoordinator();
64
65 MCNAPI ::Bedrock::NotNullNonOwnerPtr<::LevelEventCoordinator> $getLevelEventCoordinator();
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCNAPI static void** $vftable();
72 // NOLINTEND
73};
Definition ClientEventCoordinatorManager.h:18
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:8
Definition EventCoordinatorManager.h:25
Definition LevelEventCoordinator.h:25
Definition PlayerEventCoordinator.h:20