LeviLamina
Loading...
Searching...
No Matches
SelectionContainerVolume.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/common/editor/EventSource.h"
7#include "mc/editor/selection/SelectionContainer.h"
8
9// auto generated forward declare list
10// clang-format off
11class BoundingBox;
12class Vec3;
13// clang-format on
14
15namespace Editor::Selection {
16
18public:
19 // member variables
20 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 0
35 virtual ~SelectionContainerVolume() /*override*/;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
42
44
46
48
49 MCNAPI ::std::optional<::BoundingBox> bounds() const;
50
51 MCNAPI void clear(::Editor::Selection::EventSource eventSource);
52
53 MCNAPI void moveTo(::Vec3 const& location, ::Editor::Selection::EventSource eventSource);
54
55 MCNAPI void translate(::Vec3 const& offset, ::Editor::Selection::EventSource eventSource);
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61 MCNAPI void $dtor();
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftable();
68 // NOLINTEND
69};
70
71} // namespace Editor::Selection
Definition BoundingBox.h:13
Definition SelectionContainerVolume.h:17
MCAPI void moveTo(::Vec3 const &location, ::Editor::Selection::EventSource eventSource)
MCAPI void translate(::Vec3 const &offset, ::Editor::Selection::EventSource eventSource)
MCAPI ::std::optional<::BoundingBox > bounds() const
MCAPI void clear(::Editor::Selection::EventSource eventSource)
Definition SelectionContainer.h:12
Definition Vec3.h:10
Definition Alias.h:14