0
C++ researching information (game development)
I understand that sololearn does not teach everythng that C++ offers. What I am wondering is what is crucial for game development that sololearn does not teach? Thank you for any response given if I was a little to vague feel free to ask me to elaborate more.
3 Answers
+ 6
C++ game development resources
https://www.sololearn.com/discuss/488976/?ref=app
+ 4
Learn about range based for loops and the auto keyword. They make you far more productive and your code more readable.
0
Everything ćļ¼Øļ¼”ļ¼°ļ¼°ļ¼¹ ļ¼“ļ¼Æ ļ¼Øļ¼„ļ¼¬ļ¼°ć and Kaynn Cahya mentioned + I'd suggest learning new things from C++11 to C++17. Things like smart pointers, variadic templates (generally metaprogramming) and multithreading. And of course Unit tests are nice-to-have.