LeviLamina
Loading...
Searching...
No Matches
BlockTickConfigurationComponentDescription.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, uint> mDelayIntervalMinTicks;
18 ::ll::TypedStorage<4, 4, uint> mDelayIntervalMaxTicks;
19 ::ll::TypedStorage<1, 1, bool> mLooping;
20 // NOLINTEND
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 // vIndex: 1
26 virtual ::std::string const& getName() const /*override*/;
27
28 // vIndex: 2
29 virtual void initializeComponent(::BlockComponentStorage& blockComponentStorage) const /*override*/;
30
31 // vIndex: 0
32 virtual ~BlockTickConfigurationComponentDescription() /*override*/ = default;
33 // NOLINTEND
34
35public:
36 // static variables
37 // NOLINTBEGIN
38 MCAPI static ::std::string const& NameID();
39 // NOLINTEND
40
41public:
42 // virtual function thunks
43 // NOLINTBEGIN
44 MCAPI ::std::string const& $getName() const;
45
46 MCAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const;
47 // NOLINTEND
48
49public:
50 // vftables
51 // NOLINTBEGIN
52 MCNAPI static void** $vftable();
53 // NOLINTEND
54};
Definition BlockComponentStorage.h:53
Definition BlockTickConfigurationComponentDescription.h:13
Definition BlockComponentDescription.h:20