updated old docs
[sdlgit/SDL-Site.git] / pages / SDL-Tutorial-Pong.html-inc
index a0e0d9a..718320d 100644 (file)
@@ -2,8 +2,10 @@
 <!-- INDEX START -->
 <h3 id="TOP">Index</h3>
 
-<ul><li><a href="#PONG_TUTORIAL">PONG TUTORIAL</a>
-<ul><li><a href="#Part_1_We_start_with_a_Rect">Part 1: We start with a Rect</a></li>
+<ul><li><a href="#NAME">NAME</a></li>
+<li><a href="#PONG_TUTORIAL">PONG TUTORIAL</a>
+<ul><li><a href="#CATEGORY">CATEGORY</a></li>
+<li><a href="#Part_1_We_start_with_a_Rect">Part 1: We start with a Rect</a></li>
 <li><a href="#Part_0_quot_The_Screen_quot">Part 0: &quot;The Screen&quot;</a>
 <ul><li><a href="#Creating_an_empty_event_loop">Creating an (empty) event loop</a></li>
 </ul>
 </ul><hr />
 <!-- INDEX END -->
 
+<h1 id="NAME">NAME</h1><p><a href="#TOP" class="toplink">Top</a></p>
+<div id="NAME_CONTENT">
+<p>SDL::Tutorial::Pong -- Get started pong</p>
+
+</div>
 <h1 id="PONG_TUTORIAL">PONG TUTORIAL</h1><p><a href="#TOP" class="toplink">Top</a></p>
 <div id="PONG_TUTORIAL_CONTENT">
 <p>This tutorial is intended to help you build your very own version of the Pong game and/or variations of it, using SDL Perl.</p>
 <p>Just in case you live under a rock, Pong is one of the earliest arcade games, a true classic by Atari Inc. The game has two simple rectangles scrolling up and down trying to hit a (square) ball that bounces around, and could be thought of as a table tennis simulation.</p>
 
 </div>
+<h2 id="CATEGORY">CATEGORY</h2>
+<div id="CATEGORY_CONTENT">
+<p>Tutorials</p>
+
+</div>
 <h2 id="Part_1_We_start_with_a_Rect">Part 1: We start with a Rect</h2>
 <div id="Part_1_We_start_with_a_Rect_CONTENT">
 <p>In Pong, the player controls a rectangle that moves up and down, so creating the rectangle looks like a good place to start:</p>
@@ -48,7 +60,7 @@
 
 </pre>
 <p>&nbsp;</p>
-<p>That creates a new <cite>SDL::Game::Rect</cite> object, a rectangle, with the given width/height dimensions and in the given top/left position of the screen.</p>
+<p>That creates a new <a href="SDL-Game-Rect.html">SDL::Game::Rect</a> object, a rectangle, with the given width/height dimensions and in the given top/left position of the screen.</p>
 <p>Wait. Did I say... <i>&lt;screen</i>&gt;?</p>
 
 </div>
 <div id="Part_2_Our_first_event_tracking_user-2">
 <p># TODO</p>
 <p>Now let's query some events!</p>
-<p>First, we need to use the <cite>SDL::Event</cite> module. Add this to the beginning of our code:</p>
+<p>First, we need to use the <a href="SDL-Event.html">SDL::Event</a> module. Add this to the beginning of our code:</p>
 <p>&nbsp;</p>
 <pre>  use SDL::Event;
   my $event = SDL::Event-&gt;new;