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 virtual ~IEDUSystems() /*override*/ = default;
31
32 virtual ::Identity::IEduAuth& getEduAuth() const = 0;
33
34 virtual ::Social::IEduMultiplayerHeadless& getMultiplayerHeadless() const = 0;
35 // NOLINTEND
36};
Definition EnableNonOwnerReferences.h:7
Definition IEduAuth.h:20
Definition IEduMultiplayerHeadless.h:25
Definition Alias.h:14