LeviLamina
Loading...
Searching...
No Matches
AirBlockItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/Item.h"
7
8class AirBlockItem : public ::Item {
9public:
10 // virtual functions
11 // NOLINTBEGIN
12 // vIndex: 0
13 virtual ~AirBlockItem() /*override*/ = default;
14 // NOLINTEND
15
16public:
17 // member functions
18 // NOLINTBEGIN
19 MCAPI AirBlockItem(::std::string const& name, int id);
20 // NOLINTEND
21
22public:
23 // constructor thunks
24 // NOLINTBEGIN
25 MCAPI void* $ctor(::std::string const& name, int id);
26 // NOLINTEND
27
28public:
29 // destructor thunk
30 // NOLINTBEGIN
31
32 // NOLINTEND
33
34public:
35 // vftables
36 // NOLINTBEGIN
37 MCAPI static void** $vftable();
38 // NOLINTEND
39};
Definition AirBlockItem.h:8
Definition Item.h:65