LeviLamina
Loading...
Searching...
No Matches
IScriptBlockCustomComponentReader.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class BlockPos;
8class IBlockSource;
9// clang-format on
10
11namespace ScriptModuleMinecraft {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 0
18 virtual ~IScriptBlockCustomComponentReader() = default;
19
20 // vIndex: 1
21 virtual bool isValidComponentForBlock(::IBlockSource const&, ::BlockPos, ::std::string_view) const = 0;
22 // NOLINTEND
23
24public:
25 // virtual function thunks
26 // NOLINTBEGIN
27
28 // NOLINTEND
29};
30
31} // namespace ScriptModuleMinecraft
Definition BlockPos.h:18
Definition IBlockSource.h:35
Definition IScriptBlockCustomComponentReader.h:13