LeviLamina
Loading...
Searching...
No Matches
ClientRequestPlaceholderBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/optional_ref.h"
7#include "mc/world/level/ShapeType.h"
8#include "mc/world/level/block/BlockType.h"
9
10// auto generated forward declare list
11// clang-format off
12class Block;
13class BlockPos;
14class BlockSource;
16class HitResult;
17class Material;
18class Vec3;
19// clang-format on
20
21class ClientRequestPlaceholderBlock : public ::BlockType {
22public:
23 // prevent constructor by default
24 ClientRequestPlaceholderBlock();
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 virtual ::HitResult clip(
30 ::Block const& block,
31 ::BlockSource const& region,
32 ::BlockPos const& pos,
33 ::Vec3 const& A,
34 ::Vec3 const& B,
35 ::ShapeType shapeType,
37 ) const /*override*/;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCAPI ClientRequestPlaceholderBlock(::std::string const& nameId, int id, ::Material const& material);
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCAPI void* $ctor(::std::string const& nameId, int id, ::Material const& material);
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCFOLD ::HitResult $clip(
56 ::Block const& block,
57 ::BlockSource const& region,
58 ::BlockPos const& pos,
59 ::Vec3 const& A,
60 ::Vec3 const& B,
61 ::ShapeType shapeType,
63 ) const;
64
65
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCAPI static void** $vftable();
72 // NOLINTEND
73};
Definition BlockPos.h:21
Definition BlockSource.h:73
Definition Block.h:69
Definition GetCollisionShapeInterface.h:13
Definition HitResult.h:19
Definition Material.h:8
Definition Vec3.h:10
Definition optional_ref.h:10