this seems like a silly question but i'm working through a game scripting book and see alot of
typedef struct structname
{
int a,
int b,
...
} typedefname
now what is the benefit of using a typedef here? either way , you reference the struct with the same amount of variables
structname.a = ...
typedefname.a = ...
is that right? am i missing something?