fixed url-generator
[sdlgit/SDL-Site.git] / pages / SDL-Tutorial-Pong.html-inc
index 97c5fe1..718320d 100644 (file)
@@ -2,7 +2,8 @@
 <!-- INDEX START -->
 <h3 id="TOP">Index</h3>
 
-<ul><li><a href="#PONG_TUTORIAL">PONG TUTORIAL</a>
+<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><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>
@@ -54,7 +60,7 @@
 
 </pre>
 <p>&nbsp;</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>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 <a href="/SDL-Event.html">SDL::Event</a> 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;