LeviLamina
Loading...
Searching...
No Matches
CameraAimAssistPacket.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 BinaryStream;
14class Vec2;
15// clang-format on
16
18public:
19 // CameraAimAssistPacket inner types define
20 enum class Action : uchar {
21 Set = 0,
22 Clear = 1,
23 Count = 2,
24 };
25
26 enum class TargetMode : uchar {
27 Angle = 0,
28 Distance = 1,
29 Count = 2,
30 };
31
32public:
33 // member variables
34 // NOLINTBEGIN
35 ::ll::TypedStorage<8, 32, ::std::string> mPresetId;
36 ::ll::TypedStorage<4, 8, ::Vec2> mViewAngle;
37 ::ll::TypedStorage<4, 4, float> mDistance;
38 ::ll::TypedStorage<1, 1, ::CameraAimAssistPacket::TargetMode> mTargetMode;
39 ::ll::TypedStorage<1, 1, ::CameraAimAssistPacket::Action> mAction;
40 // NOLINTEND
41
42public:
43 // virtual functions
44 // NOLINTBEGIN
45 // vIndex: 1
46 virtual ::MinecraftPacketIds getId() const /*override*/;
47
48 // vIndex: 2
49 virtual ::std::string getName() const /*override*/;
50
51 // vIndex: 4
52 virtual void write(::BinaryStream& stream) const /*override*/;
53
54 // vIndex: 8
55 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& stream) /*override*/;
56
57 // vIndex: 0
58 virtual ~CameraAimAssistPacket() /*override*/;
59 // NOLINTEND
60
61public:
62 // member functions
63 // NOLINTBEGIN
65 // NOLINTEND
66
67public:
68 // constructor thunks
69 // NOLINTBEGIN
70 MCAPI void* $ctor();
71 // NOLINTEND
72
73public:
74 // destructor thunk
75 // NOLINTBEGIN
76 MCFOLD void $dtor();
77 // NOLINTEND
78
79public:
80 // virtual function thunks
81 // NOLINTBEGIN
82 MCAPI ::MinecraftPacketIds $getId() const;
83
84 MCAPI ::std::string $getName() const;
85
86 MCAPI void $write(::BinaryStream& stream) const;
87
88 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& stream);
89 // NOLINTEND
90
91public:
92 // vftables
93 // NOLINTBEGIN
94 MCAPI static void** $vftable();
95 // NOLINTEND
96};
Definition BinaryStream.h:10
Definition CameraAimAssistPacket.h:17
Definition Packet.h:26
Definition ReadOnlyBinaryStream.h:8
Definition Vec2.h:5