summaryrefslogtreecommitdiff
path: root/src/star.h
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-12-10 17:24:57 +0500
committerilotterytea <iltsu@alright.party>2024-12-10 17:24:57 +0500
commit0a50b20f43c2abec41ba35c01f26ed5fa650e9f9 (patch)
tree980d84a000c3a1cce18678cfacfa33b321fa2cbf /src/star.h
parent6b7805045f943b92ca6d6239be600e6583bd982d (diff)
feat: init stars
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;