16 lines
325 B
C
16 lines
325 B
C
/**
|
|
* QuokkaGFX - Lightweight SDL3 wrapper - umbrella header
|
|
*
|
|
* Single header include for easy integration.
|
|
* Usage: #include "quokka_gfx/quokka_gfx.h"
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "quokka_gfx/Application.h"
|
|
#include "quokka_gfx/Window/Window.h"
|
|
#include "utils/Colors.h"
|
|
#include "utils/Coords.h"
|
|
|
|
#include <SDL3/SDL.h>
|