LeviLamina
Loading...
Searching...
No Matches
ActionContainer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/npc/CommandAction.h"
7#include "mc/world/actor/npc/UrlAction.h"
8
9namespace npc {
10
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<8, 24, ::std::vector<::std::variant<::npc::CommandAction, ::npc::UrlAction>>> mActions;
16 ::ll::TypedStorage<8, 24, ::std::vector<uint64>> mButtons;
17 // NOLINTEND
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCAPI void push(::std::variant<::npc::CommandAction, ::npc::UrlAction>&& action);
23
24#ifdef LL_PLAT_C
25 MCAPI void remove(uint64 index);
26#endif
27
28 MCAPI void reset(::std::vector<::std::variant<::npc::CommandAction, ::npc::UrlAction>>&& data);
29
30 MCAPI ~ActionContainer();
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36 MCAPI void $dtor();
37 // NOLINTEND
38};
39
40} // namespace npc
Definition ActionContainer.h:11