LeviLamina
Loading...
Searching...
No Matches
SkinImage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/image/Image.h"
7
8struct SkinImage : public ::mce::Image {
9public:
10 // prevent constructor by default
11 SkinImage& operator=(SkinImage const&);
12 SkinImage(SkinImage const&);
13 SkinImage();
14
15public:
16 // member functions
17 // NOLINTBEGIN
18 MCAPI explicit SkinImage(::mce::Image&& image);
19
20 MCFOLD ::SkinImage& operator=(::SkinImage&&);
21
22 MCAPI bool operator==(::SkinImage const& rhs) const;
23
24 MCAPI ~SkinImage();
25 // NOLINTEND
26
27public:
28 // constructor thunks
29 // NOLINTBEGIN
30 MCAPI void* $ctor(::mce::Image&& image);
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36 MCFOLD void $dtor();
37 // NOLINTEND
38};
Definition Image.h:12