1/*  Part of the SDL3 pack for SWI-Prolog.
    2
    3    This is the main entry point. It re-exports all themed submodules so
    4    that `:- use_module(library(sdl)).` provides the complete user-facing API.
    5*/
    6
    7:- module(sdl, [
    8    % The module export list is implicitly populated by reexport/1,
    9    % but can be explicitly listed here for documentation if desired.
   10]).   11
   12:- reexport(library(sdl/init)).   13:- reexport(library(sdl/video)).   14:- reexport(library(sdl/render)).   15:- reexport(library(sdl/events)).   16:- reexport(library(sdl/surface)).   17:- reexport(library(sdl/pixels)).   18:- reexport(library(sdl/image)).   19:- reexport(library(sdl/gpu)).