LeviLamina
Loading...
Searching...
No Matches
BlockPrecipitationInteractionsComponentDescription.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/components/NetworkedBlockComponentDescription.h"
7#include "mc/world/level/block/components/PrecipitationBehavior.h"
8
9// auto generated forward declare list
10// clang-format off
12class SemVersion;
13// clang-format on
14
16: public ::NetworkedBlockComponentDescription<::BlockPrecipitationInteractionsComponentDescription> {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<1, 1, ::PrecipitationBehavior> mBehavior;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 1
31 virtual ::std::string const& getName() const /*override*/;
32
33 // vIndex: 2
34 virtual void initializeComponent(::BlockComponentStorage& blockComponentStorage) const /*override*/;
35
36 // vIndex: 4
37 virtual void initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const /*override*/;
38
39 // vIndex: 0
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI explicit BlockPrecipitationInteractionsComponentDescription(::PrecipitationBehavior behavior);
47 // NOLINTEND
48
49public:
50 // static variables
51 // NOLINTBEGIN
52 MCAPI static ::std::string const& NameID();
53
54 MCAPI static ::std::string const& PrecipitationBehaviorID();
55
56 MCAPI static ::std::string const& SchemaID();
57
58 MCAPI static ::SemVersion const& Version1_21_120();
59 // NOLINTEND
60
61public:
62 // constructor thunks
63 // NOLINTBEGIN
64 MCAPI void* $ctor(::PrecipitationBehavior behavior);
65 // NOLINTEND
66
67public:
68 // destructor thunk
69 // NOLINTBEGIN
70 MCFOLD void $dtor();
71 // NOLINTEND
72
73public:
74 // virtual function thunks
75 // NOLINTBEGIN
76 MCAPI ::std::string const& $getName() const;
77
78 MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const;
79
80 MCFOLD void $initializeComponentFromCode(::BlockComponentStorage& blockComponentStorage) const;
81 // NOLINTEND
82
83public:
84 // vftables
85 // NOLINTBEGIN
86 MCNAPI static void** $vftable();
87 // NOLINTEND
88};
Definition BlockComponentStorage.h:56
Definition NetworkedBlockComponentDescription.h:6
Definition SemVersion.h:16
Definition BlockPrecipitationInteractionsComponentDescription.h:16