LeviLamina
Loading...
Searching...
No Matches
TelemetryInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class TelemetryInfo {
6public:
7 // member variables
8 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 TelemetryInfo& operator=(TelemetryInfo const&);
20 TelemetryInfo(TelemetryInfo const&);
21 TelemetryInfo();
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCNAPI_C void _detectTampering();
27
28 MCNAPI_C ::std::string _generateTamperGuard(::std::string const& content) const;
29
30 MCNAPI_C void _load();
31
32 MCNAPI_C void _save();
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38 MCNAPI_C void* $ctor();
39 // NOLINTEND
40};
Definition Alias.h:14