LeviLamina
Loading...
Searching...
No Matches
HideComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class CompoundTag;
9// clang-format on
10
11class HideComponent {
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<1, 1, bool> mIsInRaid;
16 ::ll::TypedStorage<1, 1, bool> mReactToBell;
17 // NOLINTEND
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCAPI HideComponent();
23
24 MCAPI void addAdditionalSaveData(::CompoundTag& tag) const;
25
26 MCFOLD bool isInRaid();
27
28 MCFOLD bool isReactingToBell();
29
30 MCAPI void readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper);
31
32 MCFOLD void setInRaid();
33
34 MCAPI void setNotHiding();
35
36 MCFOLD void setReactingToBell();
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCFOLD void* $ctor();
43 // NOLINTEND
44};
Definition CompoundTag.h:23
Definition DataLoadHelper.h:20