LeviLamina
Loading...
Searching...
No Matches
PlayerListEntry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Color.h"
7#include "mc/deps/core/platform/BuildPlatform.h"
8#include "mc/legacy/ActorUniqueID.h"
9#include "mc/platform/UUID.h"
10#include "mc/world/actor/player/SerializedSkinRef.h"
11
12// auto generated forward declare list
13// clang-format off
14class Player;
15// clang-format on
16
17class PlayerListEntry {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 8, ::ActorUniqueID> mId;
22 ::ll::TypedStorage<8, 16, ::mce::UUID> mUUID;
23 ::ll::TypedStorage<8, 32, ::std::string> mName;
24 ::ll::TypedStorage<8, 32, ::std::string> mXUID;
25 ::ll::TypedStorage<8, 32, ::std::string> mPlatformOnlineId;
26 ::ll::TypedStorage<4, 4, ::BuildPlatform> mBuildPlatform;
27 ::ll::TypedStorage<8, 16, ::SerializedSkinRef> mSkin;
28 ::ll::TypedStorage<4, 16, ::mce::Color> mColor;
29 ::ll::TypedStorage<1, 1, bool> mIsTeacher;
30 ::ll::TypedStorage<1, 1, bool> mIsHost;
31 ::ll::TypedStorage<1, 1, bool> mIsSubClient;
32 // NOLINTEND
33
34public:
35 // prevent constructor by default
36 PlayerListEntry& operator=(PlayerListEntry const&);
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCAPI PlayerListEntry();
42
43 MCAPI PlayerListEntry(::PlayerListEntry const&);
44
45 MCAPI explicit PlayerListEntry(::Player const& player);
46
47#ifdef LL_PLAT_C
48 MCAPI ::PlayerListEntry cloneExceptSkin() const;
49
50 MCAPI ::PlayerListEntry& operator=(::PlayerListEntry&&);
51#endif
52
53 MCAPI ~PlayerListEntry();
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
59 MCAPI void* $ctor();
60
61 MCAPI void* $ctor(::PlayerListEntry const&);
62
63 MCAPI void* $ctor(::Player const& player);
64 // NOLINTEND
65
66public:
67 // destructor thunk
68 // NOLINTBEGIN
69 MCAPI void $dtor();
70 // NOLINTEND
71};
Definition Player.h:129