LeviLamina
Loading...
Searching...
No Matches
ActorEnvironment.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class EntityContext;
8// clang-format on
9
10namespace ActorEnvironment {
11// functions
12// NOLINTBEGIN
13MCAPI bool getHeadInWater(::EntityContext const& provider);
14
15MCAPI bool getIsInLava(::EntityContext const& provider);
16
17MCAPI bool getIsInWater(::EntityContext const& provider);
18
19MCAPI void setHeadInWater(::EntityContext& provider, bool value);
20
21MCAPI void setIsInWater(::EntityContext& provider, bool value);
22// NOLINTEND
23
24} // namespace ActorEnvironment
Definition EntityContext.h:17