LeviLamina
Loading...
Searching...
No Matches
UrlAction.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/npc/ActionValue.h"
7#include "mc/world/actor/npc/Button.h"
8
9namespace npc {
10
11struct UrlAction {
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<8, 64, ::npc::ActionValue> action;
16 ::ll::TypedStorage<8, 64, ::npc::Button> button;
17 // NOLINTEND
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCAPI bool operator!=(::npc::UrlAction const& rhs) const;
23
24 MCAPI ~UrlAction();
25 // NOLINTEND
26
27public:
28 // destructor thunk
29 // NOLINTBEGIN
30 MCFOLD void $dtor();
31 // NOLINTEND
32};
33
34} // namespace npc
Definition UrlAction.h:11