LeviLamina
Loading...
Searching...
No Matches
BasePrimitivePosition.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/editor/services/render_helper/BasePrimitive.h"
7
8// auto generated forward declare list
9// clang-format off
10class AABB;
11class Vec3;
12// clang-format on
13
14namespace Editor::RenderHelper {
15
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 1
33 virtual ::Vec3 const& getPosition() const /*override*/;
34
35 // vIndex: 2
36 virtual void setPosition(::Vec3 const&) /*override*/;
37
38 // vIndex: 3
39 virtual void updateBoundingBox(::Vec3 const&, ::AABB&) const /*override*/;
40
41 // vIndex: 4
42 virtual ~BasePrimitivePosition() /*override*/ = default;
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54
55 // NOLINTEND
56};
57
58} // namespace Editor::RenderHelper
Definition AABB.h:16
Definition BasePrimitivePosition.h:16
Definition BasePrimitive.h:17
Definition Vec3.h:10
Definition Alias.h:14