LeviLamina
Loading...
Searching...
No Matches
CrashUploadStatus.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock {
6
7struct CrashUploadStatus {
8public:
9 // member variables
10 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 CrashUploadStatus& operator=(CrashUploadStatus const&);
25 CrashUploadStatus(CrashUploadStatus const&);
26 CrashUploadStatus();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31
32 // NOLINTEND
33
34public:
35 // destructor thunk
36 // NOLINTBEGIN
37 MCNAPI_C void $dtor();
38 // NOLINTEND
39};
40
41} // namespace Bedrock
Definition Alias.h:14