mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
15 lines
236 B
C++
15 lines
236 B
C++
#ifndef OPENMW_COMPONENTS_RESOURCE_ERRORMARKER_H
|
|
#define OPENMW_COMPONENTS_RESOURCE_ERRORMARKER_H
|
|
|
|
#include <string_view>
|
|
|
|
namespace Resource
|
|
{
|
|
struct ErrorMarker
|
|
{
|
|
static const std::string_view sValue;
|
|
};
|
|
}
|
|
|
|
#endif
|