LeviLamina
Loading...
Searching...
No Matches
BoxPrimitive.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/editor/services/render_helper/BasePrimitivePosition.h"
7#include "mc/editor/services/render_helper/PrimitiveType.h"
8
9// auto generated forward declare list
10// clang-format off
11class AABB;
12class Vec3;
13namespace Editor::RenderHelper { struct Vertex; }
14// clang-format on
15
16namespace Editor::RenderHelper {
17
19public:
20 // member variables
21 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 BoxPrimitive& operator=(BoxPrimitive const&);
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 4
37 virtual ~BoxPrimitive() /*override*/ = default;
38
39 // vIndex: 0
40 virtual ::Editor::RenderHelper::PrimitiveType getType() const /*override*/;
41
42 // vIndex: 3
43 virtual void updateBoundingBox(::Vec3 const&, ::AABB&) const /*override*/;
44
45 // vIndex: 5
46 virtual void _rebuild() /*override*/;
47
48 // vIndex: 6
49 virtual void _getVertices(::std::vector<::Editor::RenderHelper::Vertex>&) /*override*/;
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61
62 // NOLINTEND
63};
64
65} // namespace Editor::RenderHelper
Definition AABB.h:16
Definition BasePrimitivePosition.h:16
Definition BoxPrimitive.h:18
Definition Vec3.h:10
Definition Alias.h:14