LeviLamina
Loading...
Searching...
No Matches
GlowstoneBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/BlockType.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockSource;
11class Container;
12class Material;
13class Vec3;
14// clang-format on
15
16class GlowstoneBlock : public ::BlockType {
17public:
18 // prevent constructor by default
19 GlowstoneBlock();
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual bool dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar) const
25 /*override*/;
26 // NOLINTEND
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCAPI GlowstoneBlock(::std::string const& nameId, int id, ::Material const& material);
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCAPI void* $ctor(::std::string const& nameId, int id, ::Material const& material);
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43 MCAPI bool $dispense(::BlockSource& region, ::Container& container, int slot, ::Vec3 const& pos, uchar) const;
44
45
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCAPI static void** $vftable();
52 // NOLINTEND
53};
Definition BlockSource.h:73
Definition Container.h:34
Definition Material.h:8
Definition Vec3.h:10