Will it be possible to have a struct inside a struct at some time?
ex. ally[].magic[].name
Code:
struct magic_t
{
string name;
string desc;
int has;
//-- Other magic stuff here--
}
struct char_t
{
int hp, mp;
//-- Other status crap here --
magic_t magic;
}
char_t ally;
---------------
So, comments? Would other people find this useful as well?