LeviLamina
Loading...
Searching...
No Matches
ShowcasedScreenshot.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/file/PathBuffer.h"
7
8namespace Screenshots {
9
10struct ShowcasedScreenshot {
11public:
12 // member variables
13 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ShowcasedScreenshot& operator=(ShowcasedScreenshot const&);
27 ShowcasedScreenshot(ShowcasedScreenshot const&);
28 ShowcasedScreenshot();
29
30public:
31 // member functions
32 // NOLINTBEGIN
33#ifdef LL_PLAT_C
34 MCNAPI ShowcasedScreenshot(
35 ::std::string guid,
38 ::std::string imageUrl,
39 int64 captureTime,
40 int64 lastModifiedTime,
41 bool featured,
42 bool loadingImage
43 );
44
45 MCNAPI ~ShowcasedScreenshot();
46#endif
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52#ifdef LL_PLAT_C
53 MCNAPI void* $ctor(
54 ::std::string guid,
57 ::std::string imageUrl,
58 int64 captureTime,
59 int64 lastModifiedTime,
60 bool featured,
61 bool loadingImage
62 );
63#endif
64 // NOLINTEND
65
66public:
67 // destructor thunk
68 // NOLINTBEGIN
69#ifdef LL_PLAT_C
70 MCNAPI void $dtor();
71#endif
72 // NOLINTEND
73};
74
75} // namespace Screenshots
Definition PathBuffer.h:8
Definition Alias.h:14