LeviLamina
Loading...
Searching...
No Matches
LocalAuthentication.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class LocalAuthentication {
6public:
7 // member variables
8 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 LocalAuthentication& operator=(LocalAuthentication const&);
18 LocalAuthentication(LocalAuthentication const&);
19 LocalAuthentication();
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCNAPI_C void regenerateSelfSigned(
25 ::std::string const& playerName,
26 ::std::string const& xuid,
27 bool isSignedIn,
28 uint64 clientRandomId
29 );
30 // NOLINTEND
31
32public:
33 // destructor thunk
34 // NOLINTBEGIN
35 MCNAPI_C void $dtor();
36 // NOLINTEND
37};
Definition Alias.h:14