LeviLamina
Loading...
Searching...
No Matches
BlockChangeIntentData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class BlockActor;
8class BlockPos;
9// clang-format on
10
11namespace Editor::Transactions {
12
13struct BlockChangeIntentData {
14public:
15 // member variables
16 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 BlockChangeIntentData& operator=(BlockChangeIntentData const&);
26 BlockChangeIntentData(BlockChangeIntentData const&);
27 BlockChangeIntentData();
28
29public:
30 // member functions
31 // NOLINTBEGIN
33 uint blockRuntimeId,
34 uint extraBlockRuntimeId,
35 ::BlockActor const* blockActor,
36 ::BlockPos const& pos
37 );
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCNAPI void*
44 $ctor(uint blockRuntimeId, uint extraBlockRuntimeId, ::BlockActor const* blockActor, ::BlockPos const& pos);
45 // NOLINTEND
46};
47
48} // namespace Editor::Transactions
Definition BlockActor.h:30
Definition BlockPos.h:21
MCAPI BlockChangeIntentData(uint blockRuntimeId, uint extraBlockRuntimeId, ::BlockActor const *blockActor, ::BlockPos const &pos)
MCAPI void * $ctor(uint blockRuntimeId, uint extraBlockRuntimeId, ::BlockActor const *blockActor, ::BlockPos const &pos)
Definition Alias.h:14