LeviLamina
Loading...
Searching...
No Matches
NetworkSummary.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/network/TransportLayer.h"
7
8class NetworkSummary {
9public:
10 // member variables
11 // NOLINTBEGIN
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 NetworkSummary& operator=(NetworkSummary const&);
21 NetworkSummary(NetworkSummary const&);
22 NetworkSummary();
23
24public:
25 // member functions
26 // NOLINTBEGIN
27#ifdef LL_PLAT_C
28 MCNAPI NetworkSummary(
29 ::std::function<::TransportLayer()> getNetworkType,
30 ::std::function<bool()> isInGame,
31 ::std::function<bool()> isSignedIntoSignalingService,
32 ::std::function<bool()> isHostingLocalDedicatedServer
33 );
34
35 MCNAPI ::std::optional<::std::string> getNetworkInfoString();
36#endif
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42#ifdef LL_PLAT_C
43 MCNAPI void* $ctor(
44 ::std::function<::TransportLayer()> getNetworkType,
45 ::std::function<bool()> isInGame,
46 ::std::function<bool()> isSignedIntoSignalingService,
47 ::std::function<bool()> isHostingLocalDedicatedServer
48 );
49#endif
50 // NOLINTEND
51};
Definition Alias.h:14