tins2023/allegro/c.zig
Sander Schobers 5bfa8b2c51 Basic setup.
- Allegro wrapper.
- Setting up of new window etc.
2023-06-02 12:21:32 +02:00

9 lines
264 B
Zig

pub const c = @cImport({
@cInclude("stdint.h");
@cInclude("allegro5/allegro.h");
@cInclude("allegro5/allegro_font.h");
@cInclude("allegro5/allegro_image.h");
@cInclude("allegro5/allegro_memfile.h");
@cInclude("allegro5/allegro_ttf.h");
});