diff options
Diffstat (limited to 'src/sfml/sfml_import.zig')
| -rw-r--r-- | src/sfml/sfml_import.zig | 8 |
1 files changed, 8 insertions, 0 deletions
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"); +}); |
