LeviLamina
Loading...
Searching...
No Matches
ShowCreditsPacket.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/network/MinecraftPacketIds.h"
7#include "mc/network/packet/Packet.h"
8#include "mc/platform/Result.h"
9
10// auto generated forward declare list
11// clang-format off
12class ActorRuntimeID;
13class BinaryStream;
15// clang-format on
16
18public:
19 // ShowCreditsPacket inner types define
20 enum class CreditsState : int {
21 Start = 0,
22 Finished = 1,
23 };
24
25public:
26 // member variables
27 // NOLINTBEGIN
28 ::ll::TypedStorage<8, 8, ::ActorRuntimeID> mPlayerID;
29 ::ll::TypedStorage<4, 4, ::ShowCreditsPacket::CreditsState> mCreditsState;
30 // NOLINTEND
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 // vIndex: 1
36 virtual ::MinecraftPacketIds getId() const /*override*/;
37
38 // vIndex: 2
39 virtual ::std::string getName() const /*override*/;
40
41 // vIndex: 4
42 virtual void write(::BinaryStream& stream) const /*override*/;
43
44 // vIndex: 8
45 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
46
47 // vIndex: 0
48 virtual ~ShowCreditsPacket() /*override*/;
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCFOLD void $dtor();
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCAPI ::MinecraftPacketIds $getId() const;
61
62 MCAPI ::std::string $getName() const;
63
64 MCAPI void $write(::BinaryStream& stream) const;
65
66 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCAPI static void** $vftable();
73 // NOLINTEND
74};
Definition ActorRuntimeID.h:5
Definition BinaryStream.h:10
Definition Packet.h:26
Definition ReadOnlyBinaryStream.h:8
Definition ShowCreditsPacket.h:17