LeviLamina
Loading...
Searching...
No Matches
TextureComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/DirtyFlag.h"
7#include "mc/client/store/servicecomponent/StoreUIComponentWithStaticBinding.h"
8
9// auto generated forward declare list
10// clang-format off
12struct StoreVisualStyle;
13namespace Json { class Value; }
14namespace catalog { struct ICatalogImageResourceManager; }
15namespace catalog { struct ImageInfo; }
16// clang-format on
17
18class TextureComponent : public ::StoreUIComponentWithStaticBinding<::TextureComponent> {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::catalog::ICatalogImageResourceManager>> mImageResourceManager;
23 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::catalog::ImageInfo>> mImageInfo;
24 ::ll::TypedStorage<1, 1, bool> mDirty;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 0
35 virtual ~TextureComponent() /*override*/ = default;
36
37 // vIndex: 8
38 virtual void tick(::ui::DirtyFlag&) /*override*/;
39
40 // vIndex: 17
41 virtual void _parseData(::Json::Value const& compJson) /*override*/;
42 // NOLINTEND
43
44public:
45 // member functions
46 // NOLINTBEGIN
47 MCNAPI TextureComponent(::StoreVisualStyle& owner, ::std::shared_ptr<::MainMenuScreenModel> model);
48
49 MCNAPI ::std::string getTextureFileSystemName() const;
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCNAPI void* $ctor(::StoreVisualStyle& owner, ::std::shared_ptr<::MainMenuScreenModel> model);
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCNAPI void $_parseData(::Json::Value const& compJson);
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftable();
68 // NOLINTEND
69};
Definition Value.h:16
Definition StoreUIComponentWithStaticBinding.h:6
Definition TextureComponent.h:18
MCAPI void $_parseData(::Json::Value const &compJson)
MCAPI::std::string getTextureFileSystemName() const
MCAPI void * $ctor(::StoreVisualStyle &owner, ::std::shared_ptr<::MainMenuScreenModel > model)
MCAPI TextureComponent(::StoreVisualStyle &owner, ::std::shared_ptr<::MainMenuScreenModel > model)
static MCAPI void ** $vftable()
Definition MainMenuScreenModel.h:5
Definition StoreVisualStyle.h:5