diff --git a/SDL3_ttf-CS/SDL3_ttf/SDL_ttf.cs b/SDL3_ttf-CS/SDL3_ttf/SDL_ttf.cs index fdec2f3..4ebb114 100644 --- a/SDL3_ttf-CS/SDL3_ttf/SDL_ttf.cs +++ b/SDL3_ttf-CS/SDL3_ttf/SDL_ttf.cs @@ -5,6 +5,17 @@ using System; namespace SDL { + [Flags] + [Typedef] + public enum TTF_FontStyleFlags : UInt32 + { + TTF_STYLE_NORMAL = SDL3_ttf.TTF_STYLE_NORMAL, + TTF_STYLE_BOLD = SDL3_ttf.TTF_STYLE_BOLD, + TTF_STYLE_ITALIC = SDL3_ttf.TTF_STYLE_ITALIC, + TTF_STYLE_UNDERLINE = SDL3_ttf.TTF_STYLE_UNDERLINE, + TTF_STYLE_STRIKETHROUGH = SDL3_ttf.TTF_STYLE_STRIKETHROUGH, + } + [Flags] [Typedef] public enum TTF_SubStringFlags : UInt32