LeviLamina
Loading...
Searching...
No Matches
IServerURLResolver.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8namespace RakNet { struct RakNetGUID; }
9// clang-format on
10
11namespace World {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 virtual ~IServerURLResolver() = default;
18
19 virtual bool
20 fromStringExplicitPort(::PingedCompatibleServer& server, char const* str, ushort port, int ipVersion) = 0;
21
22 virtual void fromString(::RakNet::RakNetGUID& guid, char const* source) = 0;
23 // NOLINTEND
24
25public:
26 // virtual function thunks
27 // NOLINTBEGIN
28
29 // NOLINTEND
30};
31
32} // namespace World
Definition IServerURLResolver.h:7
Definition PingedCompatibleServer.h:5
Definition RakNetGUID.h:7