LeviLamina
Loading...
Searching...
No Matches
AllowOffHandItemComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/components/NetworkedItemComponent.h"
7
8// auto generated forward declare list
9// clang-format off
10class HashedString;
11// clang-format on
12
13class AllowOffHandItemComponent : public ::NetworkedItemComponent<::AllowOffHandItemComponent> {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<1, 1, bool> mAllowOffHand;
18 // NOLINTEND
19
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 // vIndex: 7
24 virtual void _initializeComponent() /*override*/;
25
26 // vIndex: 0
27 virtual ~AllowOffHandItemComponent() /*override*/ = default;
28 // NOLINTEND
29
30public:
31 // static functions
32 // NOLINTBEGIN
33 MCAPI static ::HashedString const& getIdentifier();
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39 MCAPI void $_initializeComponent();
40 // NOLINTEND
41
42public:
43 // vftables
44 // NOLINTBEGIN
45 MCNAPI static void** $vftable();
46 // NOLINTEND
47};
Definition AllowOffHandItemComponent.h:13
static MCAPI void ** $vftable()
Definition HashedString.h:5
Definition NetworkedItemComponent.h:7