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