aboutsummaryrefslogtreecommitdiff
path: root/src/sfml/sfml_import.zig
diff options
context:
space:
mode:
authortslil clingman <>2021-09-01 12:59:50 -0400
committertslil clingman <>2021-09-01 12:59:50 -0400
commit6a2d132873ce7b40405a3dc000a12539fffd969b (patch)
tree3b730360b348900fbc937bd44b89c293c39ca00c /src/sfml/sfml_import.zig
Init
Diffstat (limited to 'src/sfml/sfml_import.zig')
-rw-r--r--src/sfml/sfml_import.zig8
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");
+});