LeviLamina
Loading...
Searching...
No Matches
DeepslateRedStoneOreBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/RedStoneOreBlock.h"
7
8// auto generated forward declare list
9// clang-format off
10class Block;
11class BlockActor;
12class BlockPos;
13class BlockSource;
14class ItemInstance;
15namespace BlockEvents { class BlockRandomTickEvent; }
16// clang-format on
17
18class DeepslateRedStoneOreBlock : public ::RedStoneOreBlock {
19public:
20 // prevent constructor by default
21 DeepslateRedStoneOreBlock();
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual ::ItemInstance asItemInstance(::Block const&, ::BlockActor const*) const /*override*/;
27
28 virtual void _lightUpBlock(::BlockSource& region, ::BlockPos const& pos) const /*override*/;
29
30 virtual void _unlightBlock(::BlockEvents::BlockRandomTickEvent& eventData) const /*override*/;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI DeepslateRedStoneOreBlock(::std::string const& nameId, int id, bool lit);
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCAPI void* $ctor(::std::string const& nameId, int id, bool lit);
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const;
49
50 MCAPI void $_lightUpBlock(::BlockSource& region, ::BlockPos const& pos) const;
51
52 MCAPI void $_unlightBlock(::BlockEvents::BlockRandomTickEvent& eventData) const;
53
54
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCAPI static void** $vftable();
61 // NOLINTEND
62};
Definition BlockActor.h:30
Definition BlockRandomTickEvent.h:17
Definition BlockPos.h:21
Definition BlockSource.h:73
Definition Block.h:69
Definition ItemInstance.h:15