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 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 1
35 virtual ::MinecraftPacketIds getId() const /*override*/;
36
37 // vIndex: 2
38 virtual ::std::string getName() const /*override*/;
39
40 // vIndex: 4
41 virtual void write(::BinaryStream& s) const /*override*/;
42
43 // vIndex: 8
44 virtual ::Bedrock::Result<void> _read(::ReadOnlyBinaryStream& s) /*override*/;
45
46 // vIndex: 0
47 virtual ~AnimateEntityPacket() /*override*/;
48 // NOLINTEND
49
50public:
51 // member functions
52 // NOLINTBEGIN
54 ::std::vector<::ActorRuntimeID> const& runtimeIds,
55 ::std::string const& animation,
56 ::std::string const& nextState,
57 float blendOutTime,
58 ::std::string const& stopExpression,
59 ::MolangVersion controller,
60 ::std::string const& stopExpressionVersion
61 );
62 // NOLINTEND
63
64public:
65 // constructor thunks
66 // NOLINTBEGIN
67 MCAPI void* $ctor(
68 ::std::vector<::ActorRuntimeID> const& runtimeIds,
69 ::std::string const& animation,
70 ::std::string const& nextState,
71 float blendOutTime,
72 ::std::string const& stopExpression,
73 ::MolangVersion controller,
74 ::std::string const& stopExpressionVersion
75 );
76 // NOLINTEND
77
78public:
79 // destructor thunk
80 // NOLINTBEGIN
81 MCAPI void $dtor();
82 // NOLINTEND
83
84public:
85 // virtual function thunks
86 // NOLINTBEGIN
87 MCAPI ::MinecraftPacketIds $getId() const;
88
89 MCAPI ::std::string $getName() const;
90
91 MCAPI void $write(::BinaryStream& s) const;
92
93 MCAPI ::Bedrock::Result<void> $_read(::ReadOnlyBinaryStream& s);
94 // NOLINTEND
95
96public:
97 // vftables
98 // NOLINTBEGIN
99 MCAPI static void** $vftable();
100 // NOLINTEND
101};
Definition ActorRuntimeID.h:5
Definition AnimateEntityPacket.h:18
Definition BinaryStream.h:10
Definition Packet.h:26
Definition ReadOnlyBinaryStream.h:8