LeviLamina
Loading...
Searching...
No Matches
AddActorBasePacket.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/network/packet/Packet.h"
7#include "mc/platform/Result.h"
8
9// auto generated forward declare list
10// clang-format off
11class BinaryStream;
13// clang-format on
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 0
20 virtual ~AddActorBasePacket() /*override*/;
21
22 // vIndex: 4
23 virtual void write(::BinaryStream&) const = 0;
24
25 // vIndex: 8
26 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream&) = 0;
27 // NOLINTEND
28
29public:
30 // destructor thunk
31 // NOLINTBEGIN
32 MCFOLD void $dtor();
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38
39 // NOLINTEND
40};
Definition AddActorBasePacket.h:15
Definition BinaryStream.h:10
Definition Packet.h:26
Definition ReadOnlyBinaryStream.h:8