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