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