From 0a50b20f43c2abec41ba35c01f26ed5fa650e9f9 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Tue, 10 Dec 2024 17:24:57 +0500 Subject: feat: init stars --- src/star.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/star.h (limited to 'src/star.h') 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; -- cgit v1.2.3