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(LayoutOffset const&);
30 LayoutOffset();
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI explicit LayoutOffset(::glm::vec2 size);
36
37 MCAPI explicit LayoutOffset(::Json::Value const& val);
38
39 MCAPI LayoutOffset(::ui::LayoutAxisType xType, float xValue, ::ui::LayoutAxisType yType, float yValue);
40
41 MCAPI bool operator!=(::ui::LayoutOffset const& other) const;
42
43 MCAPI ::ui::LayoutOffset& operator=(::ui::LayoutOffset&&);
44
45 MCAPI ::ui::LayoutOffset& operator=(::ui::LayoutOffset const&);
46
47 MCAPI ~LayoutOffset();
48 // NOLINTEND
49
50public:
51 // constructor thunks
52 // NOLINTBEGIN
53 MCAPI void* $ctor(::glm::vec2 size);
54
55 MCAPI void* $ctor(::Json::Value const& val);
56
57 MCAPI void* $ctor(::ui::LayoutAxisType xType, float xValue, ::ui::LayoutAxisType yType, float yValue);
58 // NOLINTEND
59
60public:
61 // destructor thunk
62 // NOLINTBEGIN
63 MCAPI void $dtor();
64 // NOLINTEND
65};
66
67} // namespace ui
Definition Value.h:16
Definition AxisOffset.h:7
Definition LayoutOffset.h:7