LeviLamina
Loading...
Searching...
No Matches
CameraInstructionPacket.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/renderer/rendergraph/Packet.h"
7#include "mc/deps/minecraft_camera/CameraInstruction.h"
8#include "mc/network/MinecraftPacketIds.h"
9#include "mc/platform/Result.h"
10
11// auto generated forward declare list
12// clang-format off
13class BinaryStream;
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 168, ::CameraInstruction> mCameraInstruction;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 1
32 virtual ::MinecraftPacketIds getId() const /*override*/;
33
34 // vIndex: 2
35 virtual ::std::string getName() const /*override*/;
36
37 // vIndex: 4
38 virtual void write(::BinaryStream& stream) const /*override*/;
39
40 // vIndex: 5
41 virtual ::Bedrock::Result<void> read(::ReadOnlyBinaryStream& bitStream) /*override*/;
42
43 // vIndex: 8
44 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
45
46 // vIndex: 0
47 virtual ~CameraInstructionPacket() /*override*/;
48 // NOLINTEND
49
50public:
51 // member functions
52 // NOLINTBEGIN
53 MCAPI explicit CameraInstructionPacket(::CameraInstruction const& cameraInstruction);
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
59 MCAPI void* $ctor(::CameraInstruction const& cameraInstruction);
60 // NOLINTEND
61
62public:
63 // destructor thunk
64 // NOLINTBEGIN
65 MCFOLD void $dtor();
66 // NOLINTEND
67
68public:
69 // virtual function thunks
70 // NOLINTBEGIN
71 MCAPI ::MinecraftPacketIds $getId() const;
72
73 MCAPI ::std::string $getName() const;
74
75 MCAPI void $write(::BinaryStream& stream) const;
76
77 MCAPI ::Bedrock::Result<void> $read(::ReadOnlyBinaryStream& bitStream);
78
79 MCFOLD ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
80 // NOLINTEND
81
82public:
83 // vftables
84 // NOLINTBEGIN
85 MCNAPI static void** $vftable();
86 // NOLINTEND
87};
Definition BinaryStream.h:10
Definition CameraInstructionPacket.h:17
static MCAPI void ** $vftable()
Definition Packet.h:26
Definition ReadOnlyBinaryStream.h:8
Definition CameraInstruction.h:17