Skip to content

Commit

Permalink
starting again
Browse files Browse the repository at this point in the history
  • Loading branch information
oneup committed Nov 19, 2008
1 parent 509d428 commit f5158aa
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions _oncemorewithfeeling/init.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# building the game thing from scratch, following http://code.google.com/p/gosu/wiki/RubyTutorial

require "rubygems"
require 'gosu'

class GameWindow < Gosu::Window
def initialize
super(640, 480, false)
self.caption = "Gosu Tutorial Game"
end

def update
end

def draw
end
end

window = GameWindow.new
window.show

0 comments on commit f5158aa

Please sign in to comment.