LeviLamina
Loading...
Searching...
No Matches
LayoutOffset.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/LayoutAxisOffsetContainerType.h"
7#include "mc/client/gui/LayoutAxisType.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Json { class Value; }
12namespace ui { struct AxisOffset; }
13// clang-format on
14
15namespace ui {
16
17struct LayoutOffset {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 24, ::std::vector<::ui::AxisOffset>> x;
22 ::ll::TypedStorage<8, 24, ::std::vector<::ui::AxisOffset>> y;
23 ::ll::TypedStorage<4, 4, ::ui::LayoutAxisOffsetContainerType> xType;
24 ::ll::TypedStorage<4, 4, ::ui::LayoutAxisOffsetContainerType> yType;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 LayoutOffset& operator=(LayoutOffset const&);
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI LayoutOffset();
35
36 MCAPI LayoutOffset(::ui::LayoutOffset const&);
37
38 MCAPI explicit LayoutOffset(::glm::vec2 size);
39
40 MCAPI explicit LayoutOffset(::Json::Value const& val);
41
42 MCAPI LayoutOffset(::ui::LayoutAxisType xType, float xValue, ::ui::LayoutAxisType yType, float yValue);
43
44 MCAPI bool operator!=(::ui::LayoutOffset const& other) const;
45
46 MCFOLD ::ui::LayoutOffset& operator=(::ui::LayoutOffset&&);
47
48 MCAPI ~LayoutOffset();
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCAPI void* $ctor();
55
56 MCAPI void* $ctor(::ui::LayoutOffset const&);
57
58 MCAPI void* $ctor(::glm::vec2 size);
59
60 MCAPI void* $ctor(::Json::Value const& val);
61
62 MCAPI void* $ctor(::ui::LayoutAxisType xType, float xValue, ::ui::LayoutAxisType yType, float yValue);
63 // NOLINTEND
64
65public:
66 // destructor thunk
67 // NOLINTBEGIN
68 MCFOLD void $dtor();
69 // NOLINTEND
70};
71
72} // namespace ui
Definition Value.h:16
Definition AxisOffset.h:7
Definition LayoutOffset.h:7