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/Result.h"
10#include "mc/platform/UUID.h"
11#include "mc/world/actor/player/SerializedSkin.h"
12
13// auto generated forward declare list
14// clang-format off
15class BinaryStream;
17// clang-format on
18
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 8, ::ActorUniqueID> mId;
24 ::ll::TypedStorage<8, 16, ::mce::UUID> mUUID;
25 ::ll::TypedStorage<8, 32, ::std::string> mName;
26 ::ll::TypedStorage<8, 32, ::std::string> mXUID;
27 ::ll::TypedStorage<8, 32, ::std::string> mPlatformOnlineId;
28 ::ll::TypedStorage<4, 4, ::BuildPlatform> mBuildPlatform;
29 ::ll::TypedStorage<8, 528, ::SerializedSkin> mSkin;
30 ::ll::TypedStorage<4, 16, ::mce::Color> mColor;
31 ::ll::TypedStorage<1, 1, bool> mIsTeacher;
32 ::ll::TypedStorage<1, 1, bool> mIsHost;
33 ::ll::TypedStorage<1, 1, bool> mIsSubClient;
34 // NOLINTEND
35
36public:
37 // prevent constructor by default
38 PlayerListEntry& operator=(PlayerListEntry const&);
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI PlayerListEntry();
45
46 MCAPI ::PlayerListEntry& operator=(::PlayerListEntry&&);
47
48 MCAPI ::Bedrock::Result<void> read(::ReadOnlyBinaryStream& stream);
49
50 MCAPI ::Bedrock::Result<void> readRemove(::ReadOnlyBinaryStream& stream);
51
52 MCAPI void write(::BinaryStream& stream) const;
53
54 MCAPI ~PlayerListEntry();
55 // NOLINTEND
56
57public:
58 // constructor thunks
59 // NOLINTBEGIN
60 MCAPI void* $ctor();
61 // NOLINTEND
62
63public:
64 // destructor thunk
65 // NOLINTBEGIN
66 MCAPI void $dtor();
67 // NOLINTEND
68};
Definition BinaryStream.h:10
Definition PlayerListEntry.h:19
Definition ReadOnlyBinaryStream.h:8