9 lines
264 B
Zig
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");
|
|
});
|