summaryrefslogtreecommitdiff
path: root/src/star.h
blob: bc215eee74ae432712de5ecbcbed734378cd62ad (plain)
1
2
3
4
5
6
7
8
#include "raylib.h"

typedef struct Star {
    Vector3 position;
    Vector2 size;
    float velocity;
    Color color;
} Star;