LeviLamina
Loading...
Searching...
No Matches
ColorExpr.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace SharedTypes::Legacy { struct ExpressionNode; }
8namespace cereal { struct ReflectionCtx; }
9// clang-format on
10
11namespace SharedTypes::v1_20_80 {
12
13struct ColorExpr {
14public:
15 // member variables
16 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 ColorExpr& operator=(ColorExpr const&);
23 ColorExpr(ColorExpr const&);
24 ColorExpr();
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCNAPI ~ColorExpr();
30 // NOLINTEND
31
32public:
33 // static functions
34 // NOLINTBEGIN
35 MCNAPI static void bindType(::cereal::ReflectionCtx& ctx);
36
37 MCNAPI static void fromExprArrayRGB(
39 ::std::array<::SharedTypes::Legacy::ExpressionNode, 3> exprRGB
40 );
41
42 MCNAPI static void fromString(::SharedTypes::v1_20_80::ColorExpr& instance, ::std::string str);
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCNAPI void $dtor();
49 // NOLINTEND
50};
51
52} // namespace SharedTypes::v1_20_80
Definition ExpressionNode.h:27
Definition ColorExpr.h:13
static MCAPI void bindType(::cereal::ReflectionCtx &ctx)
static MCAPI void fromExprArrayRGB(::SharedTypes::v1_20_80::ColorExpr &instance, ::std::array<::SharedTypes::Legacy::ExpressionNode, 3 > exprRGB)
static MCAPI void fromString(::SharedTypes::v1_20_80::ColorExpr &instance, ::std::string str)
Definition ReflectionCtx.h:11
Definition ctx.h:5
Definition Alias.h:14