From 6a2d132873ce7b40405a3dc000a12539fffd969b Mon Sep 17 00:00:00 2001 From: tslil clingman <> Date: Wed, 1 Sep 2021 12:59:50 -0400 Subject: Init --- src/sfml/sfml_import.zig | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/sfml/sfml_import.zig (limited to 'src/sfml/sfml_import.zig') diff --git a/src/sfml/sfml_import.zig b/src/sfml/sfml_import.zig new file mode 100644 index 0000000..be21671 --- /dev/null +++ b/src/sfml/sfml_import.zig @@ -0,0 +1,8 @@ +//! Imports the csfml c headers + +pub const c = @cImport({ + @cInclude("SFML/Graphics.h"); + @cInclude("SFML/Window.h"); + @cInclude("SFML/System.h"); + @cInclude("SFML/Audio.h"); +}); -- cgit v1.3.1