LeviLamina
Loading...
Searching...
No Matches
SelectionServiceProvider.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Editor::Selection { class SelectionContainerEntity; }
8namespace Editor::Selection { class SelectionContainerVolume; }
9// clang-format on
10
11namespace Editor::Services {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 0
18 virtual ~SelectionServiceProvider() = default;
19
20 // vIndex: 1
21 virtual ::Editor::Selection::SelectionContainerVolume const& containerVolume() const = 0;
22
23 // vIndex: 2
24 virtual ::Editor::Selection::SelectionContainerEntity const& containerEntity() const = 0;
25
26 // vIndex: 3
27 virtual ::Editor::Selection::SelectionContainerVolume& containerVolumeNonConst() = 0;
28
29 // vIndex: 4
30 virtual ::Editor::Selection::SelectionContainerEntity& containerEntityNonConst() = 0;
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36
37 // NOLINTEND
38
39public:
40 // vftables
41 // NOLINTBEGIN
42 MCNAPI static void** $vftable();
43 // NOLINTEND
44};
45
46} // namespace Editor::Services
Definition SelectionServiceProvider.h:13