MiniEngine/include/SDLWrapper/FontStyle.h

14 lines
165 B
C++
Raw Normal View History

2017-06-18 20:37:17 +08:00
#pragma once
2018-03-04 15:10:49 +08:00
namespace MiniEngine {
2017-06-18 20:37:17 +08:00
enum class FontStyle
{
Normal,
Bold,
Italic,
UnderLine,
StrikeThrough
};
2018-03-04 15:10:49 +08:00
} /// End of namespace MiniEngine