LeviLamina
Loading...
Searching...
No Matches
FadeInstruction.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/Result.h"
7
8// auto generated forward declare list
9// clang-format off
11namespace cereal { struct ReflectionCtx; }
12// clang-format on
13
14namespace CameraInstructionOptions {
15
16struct FadeInstruction {
17public:
18 // FadeInstruction inner types declare
19 // clang-format off
20 struct ColorOption;
21 struct TimeOption;
22 // clang-format on
23
24 // FadeInstruction inner types define
25 struct ColorOption {
26 public:
27 // member variables
28 // NOLINTBEGIN
32 // NOLINTEND
33
34 public:
35 // prevent constructor by default
36 ColorOption& operator=(ColorOption const&);
37 ColorOption(ColorOption const&);
38 ColorOption();
39
40 public:
41 // static functions
42 // NOLINTBEGIN
43 MCNAPI static ::Bedrock::Result<::CameraInstructionOptions::FadeInstruction::ColorOption>
45 // NOLINTEND
46 };
47
48 struct TimeOption {
49 public:
50 // member variables
51 // NOLINTBEGIN
55 // NOLINTEND
56
57 public:
58 // prevent constructor by default
59 TimeOption& operator=(TimeOption const&);
60 TimeOption(TimeOption const&);
61 TimeOption();
62
63 public:
64 // static functions
65 // NOLINTBEGIN
66 MCNAPI static ::Bedrock::Result<::CameraInstructionOptions::FadeInstruction::TimeOption>
68 // NOLINTEND
69 };
70
71public:
72 // member variables
73 // NOLINTBEGIN
76 // NOLINTEND
77
78public:
79 // prevent constructor by default
80 FadeInstruction& operator=(FadeInstruction const&);
81 FadeInstruction(FadeInstruction const&);
82 FadeInstruction();
83
84public:
85 // member functions
86 // NOLINTBEGIN
88 // NOLINTEND
89
90public:
91 // static functions
92 // NOLINTBEGIN
93 MCNAPI static void bindType(::cereal::ReflectionCtx& ctx);
94
95 MCNAPI static ::Bedrock::Result<::CameraInstructionOptions::FadeInstruction> read(::ReadOnlyBinaryStream& stream);
96 // NOLINTEND
97};
98
99} // namespace CameraInstructionOptions
Definition ReadOnlyBinaryStream.h:8
static MCAPI ::Bedrock::Result<::CameraInstructionOptions::FadeInstruction::ColorOption > read(::ReadOnlyBinaryStream &stream)
static MCAPI ::Bedrock::Result<::CameraInstructionOptions::FadeInstruction::TimeOption > read(::ReadOnlyBinaryStream &stream)
Definition FadeInstruction.h:16
static MCAPI void bindType(::cereal::ReflectionCtx &ctx)
MCAPI bool operator==(::CameraInstructionOptions::FadeInstruction const &other) const
static MCAPI ::Bedrock::Result<::CameraInstructionOptions::FadeInstruction > read(::ReadOnlyBinaryStream &stream)
Definition ReflectionCtx.h:11
Definition ctx.h:5
Definition Alias.h:14