LeviLamina
Loading...
Searching...
No Matches
CommandOriginIdentity.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct CommandOriginIdentity {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 32, ::std::string> mXuid;
10 ::ll::TypedStorage<8, 32, ::std::string> mPlatformOnlineId;
11 // NOLINTEND
12
13public:
14 // prevent constructor by default
15 CommandOriginIdentity& operator=(CommandOriginIdentity const&);
16 CommandOriginIdentity();
17
18public:
19 // member functions
20 // NOLINTBEGIN
21 MCAPI CommandOriginIdentity(::CommandOriginIdentity const&);
22
23 MCAPI ~CommandOriginIdentity();
24 // NOLINTEND
25
26public:
27 // constructor thunks
28 // NOLINTBEGIN
29 MCFOLD void* $ctor(::CommandOriginIdentity const&);
30 // NOLINTEND
31
32public:
33 // destructor thunk
34 // NOLINTBEGIN
35 MCFOLD void $dtor();
36 // NOLINTEND
37};