13#include <SDL3_mixer/SDL_mixer.h>
14#include <SDL3_ttf/SDL_ttf.h>
21 None = SDL_BLENDMODE_NONE,
22 Blend = SDL_BLENDMODE_BLEND,
24 Add = SDL_BLENDMODE_ADD,
38using Texture = std::shared_ptr<SDL_Texture>;
41using Font = std::shared_ptr<TTF_Font>;
44using Sample = std::shared_ptr<MIX_Audio>;
47using Music = std::shared_ptr<MIX_Audio>;
std::shared_ptr< TTF_Font > Font
Alias for a shared pointer to an TTF_Font.
std::shared_ptr< MIX_Audio > Sample
Alias for a shared pointer to an MIX_Audio.
std::shared_ptr< SDL_Texture > Texture
Alias for a shared pointer to an SDL_Texture.
std::shared_ptr< MIX_Audio > Music
Alias for a shared pointer to an MIX_Audio.
BlendMode
Mappings from SDL_BLENDMODE to ASW BlendMode.
SDL_Window Window
Alias for a shared pointer to an SDL_Window.
TextJustify
Text justification options for text rendering.
SDL_Renderer Renderer
Alias for a shared pointer to an SDL_Renderer.