LeviLamina
Loading...
Searching...
No Matches
ScreenshotOptions.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct ScreenshotOptions {
6public:
7 // member variables
8 // NOLINTBEGIN
30 // NOLINTEND
31
32public:
33 // prevent constructor by default
34 ScreenshotOptions& operator=(ScreenshotOptions const&);
35 ScreenshotOptions(ScreenshotOptions const&);
36 ScreenshotOptions();
37
38public:
39 // member functions
40 // NOLINTBEGIN
41
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCNAPI_C void* $ctor();
48
49 MCNAPI_C void* $ctor(::ScreenshotOptions&&);
50
51 MCNAPI_C void* $ctor(::ScreenshotOptions const&);
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCNAPI_C void $dtor();
58 // NOLINTEND
59};
Definition Alias.h:14