Re: Struct Inheritence
Yes that's exactly what i needed, thanks!
Struct Inheritence
Well struct don't have it, but i would like something like it but only for data, i don't need functions or anything like that just data. struct A { int valueA; } struct B { A a; int valueB; } struct C { B b; int valueC;