LeviLamina
Loading...
Searching...
No Matches
ArmorTrimTextureData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class ArmorTrim;
8class ItemStack;
11// clang-format on
12
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<1, 1, bool> mIsDyeable;
18 ::ll::TypedStorage<1, 1, bool> mIsDarker;
19 ::ll::TypedStorage<1, 1, bool> mIsLegging;
20 ::ll::TypedStorage<8, 32, ::std::string> mMaterialName;
21 ::ll::TypedStorage<8, 32, ::std::string> mPatternName;
22 ::ll::TypedStorage<8, 32, ::std::string> mArmorTexturePath;
23 ::ll::TypedStorage<8, 32, ::std::string> mCustomPatternPath;
24 ::ll::TypedStorage<8, 32, ::std::string> mCustomMaterialPalettePath;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 ArmorTrimTextureData();
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI ArmorTrimTextureData(
35 ::ArmorTrim const& armorTrim,
36 ::ItemStack const& item,
37 ::std::string const& armorTexture,
38 ::TrimMaterialRegistry const& trimMaterialRegistry
39 );
40
41 MCAPI ::ResourceLocation buildArmorTexturePath() const;
42
43 MCAPI ::ResourceLocation buildArmorTrimTexturePath() const;
44
45 MCAPI ::ResourceLocation buildMaterialTexturePath() const;
46
47 MCAPI ::ResourceLocation buildPaletteMapTexturePath() const;
48
49 MCAPI ::ResourceLocation buildTrimTexturePath() const;
50
51 MCAPI void setCustomMaterialPalettePath(::std::string materialPalettePath);
52
53 MCAPI void setCustomPatternPath(::std::string patternPath);
54
55 MCAPI ~ArmorTrimTextureData();
56 // NOLINTEND
57
58public:
59 // constructor thunks
60 // NOLINTBEGIN
61 MCAPI void* $ctor(
62 ::ArmorTrim const& armorTrim,
63 ::ItemStack const& item,
64 ::std::string const& armorTexture,
65 ::TrimMaterialRegistry const& trimMaterialRegistry
66 );
67 // NOLINTEND
68
69public:
70 // destructor thunk
71 // NOLINTBEGIN
72 MCFOLD void $dtor();
73 // NOLINTEND
74};
Definition ArmorTrimTextureData.h:5
Definition ArmorTrim.h:16
Definition ItemStack.h:35
Definition ResourceLocation.h:15
Definition TrimMaterialRegistry.h:13