LeviLamina
Loading...
Searching...
No Matches
BlockDestructibleByExplosionDescription.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
8// auto generated forward declare list
9// clang-format off
11// clang-format on
12
13struct BlockDestructibleByExplosionDescription : public ::BlockComponentDescription {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<4, 4, float> mExplosionResistance;
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 BlockDestructibleByExplosionDescription();
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ::std::string const& getName() const /*override*/;
28
29 virtual void initializeComponent(::BlockComponentStorage& blockComponentStorage) const /*override*/;
30
31 virtual void initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const /*override*/;
32
33 virtual ~BlockDestructibleByExplosionDescription() /*override*/;
34 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCAPI explicit BlockDestructibleByExplosionDescription(float explosionResistance);
40 // NOLINTEND
41
42public:
43 // static variables
44 // NOLINTBEGIN
45 MCAPI static ::std::string const& NameID();
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCAPI void* $ctor(float explosionResistance);
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCFOLD void $dtor();
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCAPI ::std::string const& $getName() const;
64
65 MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const;
66
67 MCFOLD void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const;
68
69
70 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCNAPI static void** $vftable();
76 // NOLINTEND
77};
Definition BlockComponentStorage.h:61
Definition BlockComponentDescription.h:20