summaryrefslogtreecommitdiff
path: root/src/star.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/star.h')
-rw-r--r--src/star.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/star.h b/src/star.h
new file mode 100644
index 0000000..bc215ee
--- /dev/null
+++ b/src/star.h
@@ -0,0 +1,8 @@
+#include "raylib.h"
+
+typedef struct Star {
+ Vector3 position;
+ Vector2 size;
+ float velocity;
+ Color color;
+} Star;