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