LeviLamina
Loading...
Searching...
No Matches
ActionValue.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace npc {
6
7struct ActionValue {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<8, 32, ::std::string> mRawText;
12 ::ll::TypedStorage<8, 32, ::std::string> mText;
13 // NOLINTEND
14
15#ifdef LL_PLAT_S
16#else // LL_PLAT_C
17public:
18 // prevent constructor by default
19 ActionValue& operator=(ActionValue const&);
20 ActionValue(ActionValue const&);
21
22#endif
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCAPI ActionValue();
27
28#ifdef LL_PLAT_C
29 MCFOLD ::npc::ActionValue& operator=(::npc::ActionValue&&);
30#endif
31
32 MCAPI ::npc::ActionValue& operator=(::std::string_view newName);
33
34 MCAPI ~ActionValue();
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCFOLD void* $ctor();
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46 MCFOLD void $dtor();
47 // NOLINTEND
48};
49
50} // namespace npc
Definition ActionValue.h:7