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