mirror of https://github.com/ppy/SDL3-CS.git
Add missing enum typedef in SDL_ttf
This commit is contained in:
parent
b7ca494978
commit
0d8e49ef64
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue