LeviLamina
Loading...
Searching...
No Matches
IEDUSystems.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Identity { class IEduAuth; }
11namespace Social { class IEduMultiplayerHeadless; }
12// clang-format on
13
14class IEDUSystems : public ::Bedrock::EnableNonOwnerReferences {
15public:
16 // member variables
17 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 IEDUSystems& operator=(IEDUSystems const&);
24 IEDUSystems(IEDUSystems const&);
25 IEDUSystems();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30#ifdef LL_PLAT_S
31 virtual ~IEDUSystems() /*override*/ = default;
32#else // LL_PLAT_C
33 virtual ~IEDUSystems() /*override*/;
34#endif
35
36 virtual ::Identity::IEduAuth& getEduAuth() const = 0;
37
38 virtual ::Social::IEduMultiplayerHeadless& getMultiplayerHeadless() const = 0;
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44 MCNAPI void $dtor();
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCNAPI static void** $vftable();
57 // NOLINTEND
58};
Definition EnableNonOwnerReferences.h:7
static MCAPI void ** $vftable()
MCAPI void $dtor()
Definition IEduAuth.h:21
Definition IEduMultiplayerHeadless.h:24
Definition Alias.h:14