1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-10-17 07:16:35 +00:00

use std::string_view instead

This commit is contained in:
Bret Curtis 2025-08-07 17:18:53 +02:00
parent 7ff139e7b1
commit 23fb414fd4

View file

@ -2,6 +2,7 @@
#define MWGUI_CONTROLLERBUTTONSOVERLAY_H
#include <array>
#include <string_view>
#include <MyGUI_ImageBox.h>
#include <MyGUI_TextBox.h>
@ -49,7 +50,7 @@ namespace MWGui
struct ButtonDefinition
{
Button mButton;
const char* mName;
std::string_view mName;
InputType mInputType;
union
{