LeviLamina
Loading...
Searching...
No Matches
BreakBlocksDescription.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ActorComponentDescription.h"
7#include "mc/world/level/block/BlockType.h"
8
9// auto generated forward declare list
10// clang-format off
12// clang-format on
13
14struct BreakBlocksDescription : public ::ActorComponentDescription {
15public:
16 // member variables
17 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 BreakBlocksDescription& operator=(BreakBlocksDescription const&);
24 BreakBlocksDescription(BreakBlocksDescription const&);
25 BreakBlocksDescription();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual char const* getJsonName() const /*override*/;
31
32 virtual void deserializeData(::DeserializeDataParams deserializeDataParams) /*override*/;
33
34 virtual ~BreakBlocksDescription() /*override*/;
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40 MCNAPI void $dtor();
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCNAPI char const* $getJsonName() const;
47
48 MCNAPI void $deserializeData(::DeserializeDataParams deserializeDataParams);
49
50
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCNAPI static void** $vftable();
57 // NOLINTEND
58};
Definition ActorComponentDescription.h:8
static MCAPI void ** $vftable()
MCAPI void $deserializeData(::DeserializeDataParams deserializeDataParams)
MCAPI char const * $getJsonName() const
Definition DeserializeDataParams.h:16
Definition Alias.h:14