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
15public:
16 // member functions
17 // NOLINTBEGIN
18 MCAPI ::npc::ActionValue& operator=(::std::string_view newName);
19 // NOLINTEND
20};
21
22} // namespace npc
Definition ActionValue.h:7