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 MCNAPI_C NetworkSummary(
28 ::std::function<::TransportLayer()> getNetworkType,
29 ::std::function<bool()> isInGame,
30 ::std::function<bool()> isSignedIntoSignalingService,
31 ::std::function<bool()> isHostingLocalDedicatedServer
32 );
33
34 MCNAPI_C ::std::optional<::std::string> getNetworkInfoString();
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCNAPI_C void* $ctor(
41 ::std::function<::TransportLayer()> getNetworkType,
42 ::std::function<bool()> isInGame,
43 ::std::function<bool()> isSignedIntoSignalingService,
44 ::std::function<bool()> isHostingLocalDedicatedServer
45 );
46 // NOLINTEND
47};
Definition Alias.h:14