mirror of
https://github.com/Blinue/Magpie.git
synced 2026-06-24 02:04:10 +00:00
10 lines
379 B
C
10 lines
379 B
C
#pragma once
|
|
#include "pch.h"
|
|
|
|
|
|
struct ErrorMessages {
|
|
static constexpr const char* GENERIC = "Msg_Error_Generic";
|
|
static constexpr const char* INVALID_SOURCE_WINDOW = "Msg_Error_Invalid_Source_Window";
|
|
static constexpr const char* GRAPHICS_CAPTURE = "Msg_Error_GraphicsCapture";
|
|
static constexpr const char* VSYNC_OFF_NOT_SUPPORTED = "Msg_Error_Vsync_Off_Not_Supported";
|
|
};
|