LeviLamina
Loading...
Searching...
No Matches
DecoratedPotFace.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/model/geom/ModelPart.h"
7#include "mc/client/model/models/Model.h"
8#include "mc/deps/core/math/Vec3.h"
9#include "mc/deps/minecraft_renderer/renderer/MaterialPtr.h"
10
11// auto generated forward declare list
12// clang-format off
13class ScreenContext;
14// clang-format on
15
16class DecoratedPotFace : public ::Model {
17public:
18 // DecoratedPotFace inner types declare
19 // clang-format off
20 struct Alignment;
21 // clang-format on
22
23 // DecoratedPotFace inner types define
24 struct Alignment {
25 public:
26 // member variables
27 // NOLINTBEGIN
28 ::ll::TypedStorage<4, 12, ::Vec3> mRotation;
29 ::ll::TypedStorage<4, 12, ::Vec3> mPosition;
30 // NOLINTEND
31 };
32
33public:
34 // member variables
35 // NOLINTBEGIN
36 ::ll::TypedStorage<8, 16, ::mce::MaterialPtr> mDefaultMaterial;
37 ::ll::TypedStorage<8, 16, ::mce::MaterialPtr> mGuiMaterial;
38 ::ll::TypedStorage<8, 576, ::ModelPart> mModel;
39 // NOLINTEND
40
41public:
42 // prevent constructor by default
43 DecoratedPotFace();
44
45public:
46 // virtual functions
47 // NOLINTBEGIN
48 virtual void render(::ScreenContext& screenContext) /*override*/;
49 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
54 MCAPI explicit DecoratedPotFace(::DecoratedPotFace::Alignment const& alignment);
55 // NOLINTEND
56
57public:
58 // constructor thunks
59 // NOLINTBEGIN
60 MCAPI void* $ctor(::DecoratedPotFace::Alignment const& alignment);
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCAPI void $render(::ScreenContext& screenContext);
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCNAPI static void** $vftable();
73 // NOLINTEND
74};
Definition DecoratedPotFace.h:5
static MCAPI void ** $vftable()
Definition Model.h:5
Definition ScreenContext.h:5
Definition DecoratedPotFace.h:13