LeviLamina
Loading...
Searching...
No Matches
ServerCameraInstructionComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // ServerCameraInstructionComponent inner types declare
8 // clang-format off
9 struct EaseOption;
10 // clang-format on
11
12 // ServerCameraInstructionComponent inner types define
13 struct EaseOption {
14 public:
15 // member variables
16 // NOLINTBEGIN
21 // NOLINTEND
22
23 public:
24 // prevent constructor by default
25 EaseOption& operator=(EaseOption const&);
26 EaseOption(EaseOption const&);
27 EaseOption();
28 };
29
30public:
31 // member variables
32 // NOLINTBEGIN
33 ::ll::TypedStorage<4, 4, uint> mPresetIndex;
34 ::ll::TypedStorage<4, 28, ::std::optional<::ServerCameraInstructionComponent::EaseOption>> mEase;
35 // NOLINTEND
36};
Definition ServerCameraInstructionComponent.h:13
Definition ServerCameraInstructionComponent.h:5
Definition Alias.h:14