13 lines
187 B
C++
13 lines
187 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace config::server
|
|
{
|
|
struct TextStyleConfig
|
|
{
|
|
std::string fontPath;
|
|
int fontSize = 10;
|
|
};
|
|
} // namespace config::server
|