LeviLamina
Loading...
Searching...
No Matches
AnimateEntityPacket.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/molang/MolangVersion.h"
7#include "mc/network/MinecraftPacketIds.h"
8#include "mc/network/packet/Packet.h"
9#include "mc/platform/Result.h"
10
11// auto generated forward declare list
12// clang-format off
13class ActorRuntimeID;
14class BinaryStream;
16// clang-format on
17
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 24, ::std::vector<::ActorRuntimeID>> mRuntimeIds;
23 ::ll::TypedStorage<8, 32, ::std::string> mAnimation;
24 ::ll::TypedStorage<8, 32, ::std::string> mNextState;
25 ::ll::TypedStorage<8, 32, ::std::string> mStopExpression;
26 ::ll::TypedStorage<2, 2, ::MolangVersion> mStopExpressionVersion;
27 ::ll::TypedStorage<8, 32, ::std::string> mController;
28 ::ll::TypedStorage<4, 4, float> mBlendOutTime;
29 // NOLINTEND
30
31public:
32 // prevent constructor by default
34
35public:
36 // virtual functions
37 // NOLINTBEGIN
38 // vIndex: 1
39 virtual ::MinecraftPacketIds getId() const /*override*/;
40
41 // vIndex: 2
42 virtual ::std::string getName() const /*override*/;
43
44 // vIndex: 4
45 virtual void write(::BinaryStream& s) const /*override*/;
46
47 // vIndex: 8
48 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& s) /*override*/;
49
50 // vIndex: 0
51 virtual ~AnimateEntityPacket() /*override*/;
52 // NOLINTEND
53
54public:
55 // member functions
56 // NOLINTBEGIN
58 ::std::vector<::ActorRuntimeID> const& runtimeIds,
59 ::std::string const& animation,
60 ::std::string const& nextState,
61 float blendOutTime,
62 ::std::string const& stopExpression,
63 ::MolangVersion stopExpressionVersion,
64 ::std::string const& controller
65 );
66 // NOLINTEND
67
68public:
69 // constructor thunks
70 // NOLINTBEGIN
71 MCAPI void* $ctor(
72 ::std::vector<::ActorRuntimeID> const& runtimeIds,
73 ::std::string const& animation,
74 ::std::string const& nextState,
75 float blendOutTime,
76 ::std::string const& stopExpression,
77 ::MolangVersion stopExpressionVersion,
78 ::std::string const& controller
79 );
80 // NOLINTEND
81
82public:
83 // destructor thunk
84 // NOLINTBEGIN
85 MCAPI void $dtor();
86 // NOLINTEND
87
88public:
89 // virtual function thunks
90 // NOLINTBEGIN
91 MCAPI ::MinecraftPacketIds $getId() const;
92
93 MCAPI ::std::string $getName() const;
94
95 MCAPI void $write(::BinaryStream& s) const;
96
97 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& s);
98 // NOLINTEND
99
100public:
101 // vftables
102 // NOLINTBEGIN
103 MCNAPI static void** $vftable();
104 // NOLINTEND
105};
Definition ActorRuntimeID.h:5
Definition AnimateEntityPacket.h:18
static MCAPI void ** $vftable()
Definition BinaryStream.h:10
Definition Packet.h:26
Definition ReadOnlyBinaryStream.h:8