LeviLamina
Loading...
Searching...
No Matches
SkinInfoData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/player/SerializedSkinRef.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace mce { struct Image; }
11// clang-format on
12
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 32, ::std::string> mDefaultMeshName;
18 ::ll::TypedStorage<1, 1, bool> mIsAlphaTest;
19 ::ll::TypedStorage<1, 1, bool> mIsDirty;
20 ::ll::TypedStorage<8, 16, ::SerializedSkinRef> mSkin;
21 // NOLINTEND
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26#ifdef LL_PLAT_S
27 virtual ~SkinInfoData() = default;
28#else // LL_PLAT_C
29 virtual ~SkinInfoData();
30#endif
31
32 virtual void
33 updateSkin(::SerializedSkinRef const& skin, ::mce::Image const* skinData, ::mce::Image const* capeData) = 0;
34
35 virtual bool hasValidTexture() = 0;
36 // NOLINTEND
37
38public:
39 // static functions
40 // NOLINTBEGIN
41#ifdef LL_PLAT_C
42 MCAPI static void resizeHalfSkinData(::mce::Image& image);
43
44 MCAPI static void validateAlpha(::mce::Image& image, bool isPremium);
45
46 MCAPI static bool verifyIsPremiumGeometry(::std::string const& geometryName);
47#endif
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCFOLD void $dtor();
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCAPI static void** $vftable();
66 // NOLINTEND
67};
Definition SerializedSkinRef.h:23
Definition SkinInfoData.h:13
Definition Image.h:12