Jul 15, 2014 at 12:59am UTC
How deep of an understanding of the basics of c++ is required before i move onto sdl? Do i have to master the basics or is just a basic understanding of the concepts enough to get me started with sdl?
Jul 15, 2014 at 1:05am UTC
knowledge about structures, pointers and dynamic memory allocation regions of memory (stack, heap) are what you need.
and MATH !!
Last edited on Jul 15, 2014 at 1:08am UTC
Jul 15, 2014 at 1:07am UTC
regarding structures, are they any different from classes?
Jul 15, 2014 at 1:14am UTC
Yes, in C (SDL is implemented in C) structures can *only* contain fields(data members).
in C++, struct is basically same as a class, although the default access is public
This is an incomplete answer, you can learn more by reading the tutorial in this site
Last edited on Jul 15, 2014 at 1:18am UTC