1
0
Fork 0
zenolith-sdl2/src/main.zig
2024-03-26 17:24:48 +01:00

21 lines
560 B
Zig

const std = @import("std");
test {
_ = Sdl2Font;
_ = Sdl2Painter;
_ = Sdl2Platform;
_ = Sdl2Texture;
}
/// This module as well as `c` are public to serve as an escape hatch in case FT or SDL2 APIs
/// aren't wrapped by Zenolith-SDL2.
pub const ffi = @import("ffi.zig");
pub const c = ffi.c;
pub const FreeTypeError = ffi.FreeTypeError;
pub const Sdl2Font = @import("Sdl2Font.zig");
pub const Sdl2Painter = @import("Sdl2Painter.zig");
pub const Sdl2Platform = @import("Sdl2Platform.zig");
pub const Sdl2Texture = @import("Sdl2Texture.zig");