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 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 TextureAtlasItem& operator=(TextureAtlasItem const&);
22 TextureAtlasItem();
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCAPI TextureAtlasItem(::TextureAtlasItem const&);
28
29 MCAPI TextureAtlasItem(::std::string const& name, uint64 count);
30
31 MCAPI ::TextureAtlasItem& operator=(::TextureAtlasItem&&);
32
33 MCAPI ~TextureAtlasItem();
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor(::TextureAtlasItem const&);
40
41 MCAPI void* $ctor(::std::string const& name, uint64 count);
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCAPI void $dtor();
48 // NOLINTEND
49};
Definition TextureAtlasItem.h:5
Definition TextureUVCoordinateSet.h:5