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

From Chilipedia
Jump to: navigation, search
(Created page with "Mr. DeBugger is a real sir. == Concepts Taught == * <code>+=</code> and <code>-=</code> operators * Constructors * <code>#include <header></code> * Using <code>std::mt19973</...")
 
(Downloads)
Line 17: Line 17:
 
== Downloads ==
 
== Downloads ==
  
* [http://www.planetchili.net/downloads/T7-TutCode.zip Tutorial Code]
+
* [http://www.planetchili.net/downloads/Chili%20DirectX%20Framework.zip Framework Download]
* [http://www.planetchili.net/downloads/T7-Homework.zip Homework Code]
+
  
 
== See also ==
 
== See also ==
 
* [[Beginner C++ Game Programming Tutorial 9|Next in series (Tutorial 9)]]
 
* [[Beginner C++ Game Programming Tutorial 9|Next in series (Tutorial 9)]]
 
* [[Beginner C++ Game Programming Series]]
 
* [[Beginner C++ Game Programming Series]]

Revision as of 00:48, 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>

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.

Downloads

See also