LeviLamina
Loading...
Searching...
No Matches
ChestModel.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 ChestModel : public ::Model {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 16, ::mce::MaterialPtr> mDefaultMaterial;
20 ::ll::TypedStorage<8, 576, ::ModelPart> mLid;
21 ::ll::TypedStorage<8, 576, ::ModelPart> mBottom;
22 ::ll::TypedStorage<8, 576, ::ModelPart> mLock;
23 ::ll::TypedStorage<1, 1, bool> mIsLarge;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 ChestModel();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~ChestModel() /*override*/;
34
35 virtual void render(::ScreenContext& screenContext) /*override*/;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCAPI explicit ChestModel(bool large);
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor(bool large);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCFOLD void $dtor();
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCAPI void $render(::ScreenContext& screenContext);
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCNAPI static void** $vftable();
66 // NOLINTEND
67};
Definition ChestModel.h:5
static MCAPI void ** $vftable()
Definition Model.h:5
Definition ScreenContext.h:5