LeviLamina
Loading...
Searching...
No Matches
PlayerWaypointVisibilityRules.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Player;
8// clang-format on
9
10class PlayerWaypointVisibilityRules {
11public:
12 // PlayerWaypointVisibilityRules inner types define
13 enum class Flag : uchar {
14 Spectator = 1,
15 SpectatorToSpectator = 2,
16 Hidden = 4,
17 };
18
19public:
20 // member variables
21 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 PlayerWaypointVisibilityRules& operator=(PlayerWaypointVisibilityRules const&);
28 PlayerWaypointVisibilityRules(PlayerWaypointVisibilityRules const&);
29 PlayerWaypointVisibilityRules();
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCNAPI bool operator()(::Player const& viewingPlayer, ::Player const& targetPlayer) const;
35 // NOLINTEND
36};
MCAPI bool operator()(::Player const &viewingPlayer, ::Player const &targetPlayer) const
Definition Player.h:129
Definition Alias.h:14