<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -2,12 +2,8 @@ h1. GLApp - A tiny wrapper for ruby-opengl
 
 It's simple:
 
-# require &quot;gl_app&quot;
-# Include GLApp::Engine
-
-  &lt;pre&gt;&lt;code&gt;class MyGame
-  include GLApp::Engine
-end&lt;/code&gt;&lt;/pre&gt;
+# require &quot;glapp&quot;
+# Include GLApp
 # Override as many of the callbacks as you need:
 
   * setup
@@ -20,24 +16,25 @@ end&lt;/code&gt;&lt;/pre&gt;
   * mouse_click(button, state, x, y)
   * mouse_dragging_motion(x, y)
   * mouse_passive_motion(x, y)
-# Instantiate GLApp with an instance of your engine, width, height and title, and do show.
+# If you need more control, override the default behavior of these:
 
-  &lt;pre&gt;&lt;code&gt;app = GLApp.new(MyGame.new, 800, 600, &quot;My game&quot;)
-app.show&lt;/code&gt;&lt;/pre&gt;
-# Done!
+  * setup_context
+  * pre_draw
+  * post_draw
+  * resize
+# Call show with width, height, title, and whether to be full-screen
 
 Look at the scripts in the examples/ directory.
 In fact, here's one:
 
-  require 'gl_app'
+  require 'glapp'
   
   class MyGame
-    include GLApp::Engine
+    include GLApp
     def draw
       glTranslate(0, 0, -5)
       glutSolidCube(2)
     end
   end
   
-  app = GLApp.new(MyGame.new, 800, 600, &quot;My game&quot;)
-  app.show
+  MyGame.new.show 800, 600, &quot;My Game&quot;</diff>
      <filename>README.textile</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>654b8c9677a1345711e36f350ca629e1d1c411b8</id>
    </parent>
  </parents>
  <author>
    <name>Tom Lieber</name>
    <email>tom@alltom.com</email>
  </author>
  <url>http://github.com/alltom/glapp/commit/1533420590e140d696f9e6defb34cfb5efd6b782</url>
  <id>1533420590e140d696f9e6defb34cfb5efd6b782</id>
  <committed-date>2009-05-18T18:29:35-07:00</committed-date>
  <authored-date>2009-05-18T18:29:35-07:00</authored-date>
  <message>new way to use GLApp</message>
  <tree>34c0897dd0ecad04549940758a528248788201b2</tree>
  <committer>
    <name>Tom Lieber</name>
    <email>tom@alltom.com</email>
  </committer>
</commit>
