1 2 3 4 5 6 7 8
#include "raylib.h" typedef struct Star { Vector3 position; Vector2 size; float velocity; Color color; } Star;