MiniEngine/include/SDLWrapper/FontStyle.h

14 lines
165 B
C++

#pragma once
namespace MiniEngine {
enum class FontStyle
{
Normal,
Bold,
Italic,
UnderLine,
StrikeThrough
};
} /// End of namespace MiniEngine