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/editor/selection/EventSource.h"
7#include "mc/editor/selection/SelectionContainer.h"
8
9// auto generated forward declare list
10// clang-format off
11class BoundingBox;
12class Vec3;
13namespace Bedrock::PubSub { class Subscription; }
14namespace Editor::Selection { struct SelectionVolumeEvent; }
15// clang-format on
16
17namespace Editor::Selection {
18
19class SelectionContainerVolume : public ::Editor::Selection::SelectionContainer {
20public:
21 // member variables
22 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 SelectionContainerVolume& operator=(SelectionContainerVolume const&);
30 SelectionContainerVolume(SelectionContainerVolume const&);
31 SelectionContainerVolume();
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 virtual ~SelectionContainerVolume() /*override*/;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
43
45
47
49
50 MCNAPI ::std::optional<::BoundingBox> bounds() const;
51
52 MCNAPI void clear(::Editor::Selection::EventSource eventSource);
53
54 MCNAPI void moveTo(::Vec3 const& location, ::Editor::Selection::EventSource eventSource);
55
56 MCNAPI ::Bedrock::PubSub::Subscription registerSelectionVolumeEventListener(
57 ::std::function<void(::Editor::Selection::SelectionVolumeEvent const&)> callback
58 );
59
60 MCNAPI void translate(::Vec3 const& offset, ::Editor::Selection::EventSource eventSource);
61 // NOLINTEND
62
63public:
64 // destructor thunk
65 // NOLINTBEGIN
66 MCNAPI void $dtor();
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCNAPI static void** $vftable();
73 // NOLINTEND
74};
75
76} // namespace Editor::Selection
Definition Subscription.h:10
Definition BoundingBox.h:13
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::Bedrock::PubSub::Subscription registerSelectionVolumeEventListener(::std::function< void(::Editor::Selection::SelectionVolumeEvent const &)> callback)
MCAPI void clear(::Editor::Selection::EventSource eventSource)
Definition SelectionContainer.h:12
Definition Vec3.h:10
Definition SelectionVolumeEvent.h:7
Definition Alias.h:14