LeviLamina
Loading...
Searching...
No Matches
IGetPlacementBlockCallback.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Actor;
8class Block;
9class BlockPos;
10class Vec3;
11// clang-format on
12
13namespace BlockTrait {
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 0
20 virtual ~IGetPlacementBlockCallback() = default;
21
22 // vIndex: 1
23 virtual ::gsl::not_null<::Block const*> getPlacementBlock(
24 ::gsl::not_null<::Block const*>,
25 ::Actor const&,
26 ::BlockPos const&,
27 uchar,
28 ::Vec3 const&
29 ) const = 0;
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35
36 // NOLINTEND
37
38public:
39 // vftables
40 // NOLINTBEGIN
41 MCNAPI static void** $vftable();
42 // NOLINTEND
43};
44
45} // namespace BlockTrait
Definition Actor.h:102
Definition BlockPos.h:17
Definition IGetPlacementBlockCallback.h:15
Definition Block.h:38
Definition Vec3.h:10