summaryrefslogtreecommitdiff
path: root/sources/rl/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'sources/rl/text.h')
-rw-r--r--sources/rl/text.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/sources/rl/text.h b/sources/rl/text.h
new file mode 100644
index 0000000..6fd53e2
--- /dev/null
+++ b/sources/rl/text.h
@@ -0,0 +1,20 @@
+#include "raylib.h"
+#include "s7/s7.h"
+#include <stdio.h>
+#include <stdlib.h>
+
+static s7_pointer rl_draw_text(s7_scheme *s7, s7_pointer args) {
+ Color *c = (Color *)s7_c_object_value(s7_car(s7_cddddr(args)));
+
+ DrawText(s7_string(s7_car(args)),
+ s7_integer(s7_cadr(args)),
+ s7_integer(s7_caddr(args)),
+ s7_integer(s7_cadddr(args)),
+ *c);
+
+ return(NULL);
+}
+
+static void rl_text_define_methods(s7_scheme *s7) {
+ s7_define_function(s7, "rl-draw-text", rl_draw_text, 5, 0, false, "test");
+}