LeviLamina
Loading...
Searching...
No Matches
TextureAtlasItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8// clang-format on
9
10class TextureAtlasItem {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 32, ::std::string> mName;
15 ::ll::TypedStorage<4, 4, int> mParsedNodeIndex;
16 ::ll::TypedStorage<8, 24, ::std::vector<::std::vector<::TextureUVCoordinateSet>>> mTextureUVs;
17 ::ll::TypedStorage<1, 1, bool> mIsAdditive;
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 TextureAtlasItem& operator=(TextureAtlasItem const&);
23 TextureAtlasItem();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI TextureAtlasItem(::TextureAtlasItem const&);
29
30 MCAPI TextureAtlasItem(::std::string const& name, uint64 count, bool isAdditive);
31
32 MCAPI ~TextureAtlasItem();
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38 MCAPI void* $ctor(::TextureAtlasItem const&);
39
40 MCAPI void* $ctor(::std::string const& name, uint64 count, bool isAdditive);
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46 MCAPI void $dtor();
47 // NOLINTEND
48};
Definition TextureAtlasItem.h:5
Definition TextureUVCoordinateSet.h:5