LeviLamina
Loading...
Searching...
No Matches
AgentActionEventPacketPayload.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/json/Value.h"
7#include "mc/network/packet/AgentActionType.h"
8
9struct AgentActionEventPacketPayload {
10public:
11 // member variables
12 // NOLINTBEGIN
13 ::ll::TypedStorage<4, 4, ::AgentActionType> mAction;
14 ::ll::TypedStorage<8, 32, ::std::string> mRequestId;
15 ::ll::TypedStorage<8, 16, ::Json::Value> mResponse;
16 // NOLINTEND
17
18public:
19 // member functions
20 // NOLINTBEGIN
21 MCAPI AgentActionEventPacketPayload();
22
23 MCAPI AgentActionEventPacketPayload(
24 ::std::string const& requestId,
25 ::AgentActionType action,
26 ::Json::Value const& response
27 );
28
29 MCAPI ~AgentActionEventPacketPayload();
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCAPI void* $ctor();
36
37 MCAPI void* $ctor(::std::string const& requestId, ::AgentActionType action, ::Json::Value const& response);
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43 MCFOLD void $dtor();
44 // NOLINTEND
45};
Definition Value.h:16