LeviLamina
Loading...
Searching...
No Matches
BlockMovableDescription.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/components/BlockComponentDescription.h"
7#include "mc/world/level/block/components/MovementType.h"
8#include "mc/world/level/block/components/StickyType.h"
9
10// auto generated forward declare list
11// clang-format off
13namespace cereal { struct ReflectionCtx; }
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 1
34 virtual ::std::string const& getName() const /*override*/;
35
36 // vIndex: 4
37 virtual void initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const /*override*/;
38
39 // vIndex: 2
40 virtual void initializeComponent(::BlockComponentStorage& blockComponentStorage) const /*override*/;
41
42 // vIndex: 0
43 virtual ~BlockMovableDescription() /*override*/;
44 // NOLINTEND
45
46public:
47 // member functions
48 // NOLINTBEGIN
49 MCNAPI explicit BlockMovableDescription(::MovementType movableType);
50
51 MCNAPI BlockMovableDescription(::MovementType movableType, ::StickyType stickyType);
52 // NOLINTEND
53
54public:
55 // static functions
56 // NOLINTBEGIN
57 MCNAPI static void bindType(::cereal::ReflectionCtx& ctx);
58 // NOLINTEND
59
60public:
61 // static variables
62 // NOLINTBEGIN
63 MCNAPI static ::MovementType const& DEFAULT_MOVEMENT_TYPE();
64
65 MCNAPI static ::StickyType const& DEFAULT_STICKY_TYPE();
66
67 MCNAPI static ::std::string const& NameID();
68 // NOLINTEND
69
70public:
71 // constructor thunks
72 // NOLINTBEGIN
73 MCNAPI void* $ctor(::MovementType movableType);
74
75 MCNAPI void* $ctor(::MovementType movableType, ::StickyType stickyType);
76 // NOLINTEND
77
78public:
79 // destructor thunk
80 // NOLINTBEGIN
81 MCNAPI void $dtor();
82 // NOLINTEND
83
84public:
85 // virtual function thunks
86 // NOLINTBEGIN
87 MCNAPI ::std::string const& $getName() const;
88
89 MCNAPI void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const;
90
91 MCNAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const;
92 // NOLINTEND
93
94public:
95 // vftables
96 // NOLINTBEGIN
97 MCNAPI static void** $vftable();
98 // NOLINTEND
99};
Definition BlockComponentStorage.h:8
Definition BlockComponentDescription.h:20
Definition BlockMovableDescription.h:16
MCAPI::std::string const & $getName() const
MCAPI BlockMovableDescription(::MovementType movableType)
static MCAPI ::StickyType const & DEFAULT_STICKY_TYPE()
static MCAPI void ** $vftable()
static MCAPI ::MovementType const & DEFAULT_MOVEMENT_TYPE()
MCAPI void $initializeComponent(::BlockComponentStorage &blockComponentStorage) const
MCAPI BlockMovableDescription(::MovementType movableType, ::StickyType stickyType)
static MCAPI void bindType(::cereal::ReflectionCtx &ctx)
static MCAPI ::std::string const & NameID()
MCAPI void * $ctor(::MovementType movableType, ::StickyType stickyType)
MCAPI void $initializeComponentFromCode(::BlockComponentStorage &blockComponentStorage) const
MCAPI void * $ctor(::MovementType movableType)
Definition ReflectionCtx.h:11
Definition ctx.h:5
Definition Alias.h:14