diff utils.h @ 4:035d3880da04

render text with number of elements on screen
author Dennis C. M. <dennis@denniscm.com>
date Mon, 12 Jun 2023 23:10:08 +0100
parents
children 6be2faa7ed6e
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/utils.h	Mon Jun 12 23:10:08 2023 +0100
@@ -0,0 +1,11 @@
+#ifndef UTILS_H
+#define UTILS_H
+
+#include <stdio.h>
+#include <GL/glut.h>
+#include <math.h>
+
+
+void render_text(const char *text, float x, float y);
+
+#endif