Ok...Here I have a simple C struct
typedef struct Stars_struct
{
float x, y, z;
float r, g, b;
} STARS;
Now I can create as many objects of this struct as I want (2 of them here):
STAR Object1
STAR Object2
Now, how can I create different objects using the SAME type in Blitz?
Thanks in advance!
typedef struct Stars_struct
{
float x, y, z;
float r, g, b;
} STARS;
Now I can create as many objects of this struct as I want (2 of them here):
STAR Object1
STAR Object2
Now, how can I create different objects using the SAME type in Blitz?
Thanks in advance!