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/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
20public:
21 // member variables
22 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 0
37 virtual ~SelectionContainerVolume() /*override*/;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
44
46
48
50
51 MCNAPI ::std::optional<::BoundingBox> bounds() const;
52
53 MCNAPI void clear(::Editor::Selection::EventSource eventSource);
54
55 MCNAPI void moveTo(::Vec3 const& location, ::Editor::Selection::EventSource eventSource);
56
57 MCNAPI ::Bedrock::PubSub::Subscription registerSelectionVolumeEventListener(
58 ::std::function<void(::Editor::Selection::SelectionVolumeEvent const&)> callback
59 );
60
61 MCNAPI void translate(::Vec3 const& offset, ::Editor::Selection::EventSource eventSource);
62 // NOLINTEND
63
64public:
65 // destructor thunk
66 // NOLINTBEGIN
67 MCNAPI void $dtor();
68 // NOLINTEND
69
70public:
71 // vftables
72 // NOLINTBEGIN
73 MCNAPI static void** $vftable();
74 // NOLINTEND
75};
76
77} // namespace Editor::Selection
Definition BoundingBox.h:13
Definition SelectionContainerVolume.h:19
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