LeviLamina
Loading...
Searching...
No Matches
BrushShapeManagerServiceProvider.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/editor/services/native_brush/BrushPaintCompletionState.h"
7#include "mc/editor/services/native_brush/BrushPaintMode.h"
8
9// auto generated forward declare list
10// clang-format off
11class Vec3;
12namespace Editor { class RelativeVolumeListBlockVolume; }
13namespace Editor::BlockMask { class BlockMaskList; }
14// clang-format on
15
16namespace Editor::Services {
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 0
23 virtual ~BrushShapeManagerServiceProvider() = default;
24
25 // vIndex: 1
26 virtual ::Editor::RelativeVolumeListBlockVolume const& getCurrentBrushVolume() const = 0;
27
28 // vIndex: 2
29 virtual void activateBrushTool() = 0;
30
31 // vIndex: 3
32 virtual void switchBrushPaintMode(::Editor::Brush::BrushPaintMode) = 0;
33
34 // vIndex: 5
35 virtual void setBrushShape(::std::vector<::Vec3> const&) = 0;
36
37 // vIndex: 4
38 virtual void setBrushShape(::Editor::RelativeVolumeListBlockVolume const&) = 0;
39
40 // vIndex: 6
41 virtual void setBrushMask(::Editor::BlockMask::BlockMaskList const&) = 0;
42
43 // vIndex: 7
44 virtual void beginPainting(::std::function<void(::Editor::Brush::BrushPaintCompletionState)>) = 0;
45
46 // vIndex: 8
47 virtual void endPainting(bool const) = 0;
48
49 // vIndex: 9
50 virtual void singlePaint(::std::function<void(::Editor::Brush::BrushPaintCompletionState)>) = 0;
51
52 // vIndex: 10
53 virtual void deactivateBrushTool() = 0;
54
55 // vIndex: 11
56 virtual void setBrushShapeOffset(::Vec3 const&) = 0;
57
58 // vIndex: 12
59 virtual ::Vec3 getBrushShapeOffset() const = 0;
60
61 // vIndex: 13
62 virtual void setTerrainStrength(int const) = 0;
63
64 // vIndex: 14
65 virtual void setFlattenHeight(int const) = 0;
66
67 // vIndex: 15
68 virtual void setFlattenRadius(int const) = 0;
69
70 // vIndex: 16
71 virtual void setBrushShapeVisible(bool const) = 0;
72 // NOLINTEND
73
74public:
75 // virtual function thunks
76 // NOLINTBEGIN
77
78 // NOLINTEND
79
80public:
81 // vftables
82 // NOLINTBEGIN
83 MCNAPI static void** $vftable();
84 // NOLINTEND
85};
86
87} // namespace Editor::Services
Definition BlockMaskList.h:7
Definition RelativeVolumeListBlockVolume.h:21
Definition BrushShapeManagerServiceProvider.h:18
Definition Vec3.h:10