LeviLamina
Loading...
Searching...
No Matches
ConduitWindModel.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/minecraft_renderer/renderer/MaterialPtr.h"
9
10// auto generated forward declare list
11// clang-format off
12class ScreenContext;
13// clang-format on
14
15class ConduitWindModel : public ::Model {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 16, ::mce::MaterialPtr> mDefaultMaterial;
20 ::ll::TypedStorage<8, 576, ::ModelPart> mWind;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 ConduitWindModel();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual ~ConduitWindModel() /*override*/ = default;
31
32 virtual void render(::ScreenContext& screenContext) /*override*/;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI ConduitWindModel(int u, int v, int tw, int th);
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCAPI void* $ctor(int u, int v, int tw, int th);
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCFOLD void $render(::ScreenContext& screenContext);
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCNAPI static void** $vftable();
57 // NOLINTEND
58};
Definition ConduitWindModel.h:5
static MCAPI void ** $vftable()
Definition Model.h:5
Definition ScreenContext.h:5