LeviLamina
Loading...
Searching...
No Matches
ClientInputLockComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/container/EnumSet.h"
7#include "mc/entity/components/ClientInputLockType.h"
8#include "mc/entity/enums/ClientInputLockCategory.h"
9
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<2, 2, ::Bedrock::EnumSet<::ClientInputLockCategory, 13>> mActiveCategories;
15 ::ll::TypedStorage<2, 2, ::Bedrock::EnumSet<::ClientInputLockType, 11>> mClientInputLocks;
16 // NOLINTEND
17
18public:
19 // member functions
20 // NOLINTBEGIN
21#ifdef LL_PLAT_C
22 MCAPI void deserialize(uint data);
23#endif
24
25 MCAPI bool hasLockCategory(::ClientInputLockCategory category) const;
26
27 MCAPI bool hasLockType(::ClientInputLockType lock) const;
28
29 MCFOLD uint serialize() const;
30
31 MCAPI void setLockCategory(::ClientInputLockCategory category, bool state);
32 // NOLINTEND
33};
Definition ClientInputLockComponent.h:10