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 // prevent constructor by default
11 AirBlockItem();
12
13public:
14 // virtual functions
15 // NOLINTBEGIN
16 virtual ~AirBlockItem() /*override*/ = default;
17 // NOLINTEND
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCAPI AirBlockItem(::std::string const& name, int id);
23 // NOLINTEND
24
25public:
26 // constructor thunks
27 // NOLINTBEGIN
28 MCAPI void* $ctor(::std::string const& name, int id);
29 // NOLINTEND
30
31public:
32 // vftables
33 // NOLINTBEGIN
34 MCAPI static void** $vftable();
35 // NOLINTEND
36};