summaryrefslogtreecommitdiff
path: root/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils.h')
-rw-r--r--utils.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/utils.h b/utils.h
new file mode 100644
index 0000000..a014916
--- /dev/null
+++ b/utils.h
@@ -0,0 +1,17 @@
+#ifndef _UTILS
+#define _UTILS
+#include <raylib.h>
+typedef struct _Point3d{
+ double x, y, z;
+}point3d;
+
+typedef struct _Point2d{
+ double x, y;
+}point2d;
+
+typedef struct _Display{
+ point3d p;
+ Color c;
+}display;
+
+#endif