summaryrefslogtreecommitdiff
path: root/utils.h
diff options
context:
space:
mode:
authorleo <leo@azuminha.com>2024-02-16 00:44:13 -0300
committerleo <leo@azuminha.com>2024-02-16 00:44:13 -0300
commit10f9fd02f78e6818b0b157d14b348fd36682fedb (patch)
treeac9e1d952a43cba681bf1e72ccbf7e816a86c345 /utils.h
parentb96e1de0bd5e00d7bd3c74cf5319a6fb76439c24 (diff)
finalizado, tem que melhorar a performance
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