Add missing enum typedef in SDL_ttf

This commit is contained in:
Susko3 2025-06-23 22:15:01 +02:00
parent b7ca494978
commit 0d8e49ef64
1 changed files with 11 additions and 0 deletions

View File

@ -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