Difference between revisions of "Beginner C++ Game Programming Tutorial 8"

From Chilipedia
Jump to: navigation, search
(Concepts Taught)
Line 5: Line 5:
 
* Constructors
 
* Constructors
 
* <code>#include <header></code>
 
* <code>#include <header></code>
* Using <code>std::mt19973</code> and <code>std::uniform_int_distribution<int></code>
+
* Using <code>std::mt19973</code> and <code>std::uniform_int_distribution<int></code> to generate random numbers
  
 
== Video Timestamp Index ==
 
== Video Timestamp Index ==

Revision as of 00:53, 10 September 2016

Mr. DeBugger is a real sir.

Concepts Taught

  • += and -= operators
  • Constructors
  • #include <header>
  • Using std::mt19973 and std::uniform_int_distribution<int> to generate random numbers

Video Timestamp Index

Coming soon!

Homework

Make the poos move around the screen and rebound when they hit the edges.

The solution is given in a future video.

Image to PutPixel Tools

Downloads

See also