LeviLamina
Loading...
Searching...
No Matches
IServerNetworkController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class ServerPlayer;
8namespace mce { class UUID; }
9// clang-format on
10
12public:
13 // virtual functions
14 // NOLINTBEGIN
15 virtual ~IServerNetworkController() = default;
16
17 virtual bool isDedicatedServer() const = 0;
18
19 virtual bool isHost(::mce::UUID const&) const = 0;
20
21 virtual bool canChangePermission(::mce::UUID const&, ::ServerPlayer const&) const = 0;
22 // NOLINTEND
23
24public:
25 // virtual function thunks
26 // NOLINTBEGIN
27
28 // NOLINTEND
29};
Definition ServerPlayer.h:67
Definition UUID.h:7
Definition IServerNetworkController.h:11