Sha256: f76c92c740d06f1f13ae915478716a5eb1116a2a89f06638ef3635301800e90d

Contents?: true

Size: 259 Bytes

Versions: 23

Compression:

Stored size: 259 Bytes

Contents

require 'gosu'
require_relative 'lib/keys'

class Game < Gosu::Window
  include Keys
  SCREEN_HEIGHT = 1000
  SCREEN_WIDTH = 1000

  def initialize
    super(SCREEN_WIDTH, SCREEN_HEIGHT, false)
  end

  def draw

  end

  def update

  end
end

Game.new.show

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
make_it_so-0.6.0 templates/gosu/app.rb
make_it_so-0.5.1 templates/gosu/app.rb
make_it_so-0.5.0 templates/gosu/app.rb
make_it_so-0.4.5 templates/gosu/app.rb
make_it_so-0.4.3 templates/gosu/app.rb
make_it_so-0.4.2 templates/gosu/app.rb
make_it_so-0.4.1 templates/gosu/app.rb
make_it_so-0.4.0 templates/gosu/app.rb
make_it_so-0.3.8 templates/gosu/app.rb
make_it_so-0.3.7 templates/gosu/app.rb
make_it_so-0.3.6 templates/gosu/app.rb
make_it_so-0.3.5 templates/gosu/app.rb
make_it_so-0.3.4 templates/gosu/app.rb
make_it_so-0.2.4 templates/gosu/app.rb
make_it_so-0.2.3 templates/gosu/app.rb
make_it_so-0.1.4 templates/gosu/app.rb
make_it_so-0.1.3 templates/gosu/app.rb
make_it_so-0.1.1 templates/gosu/app.rb
make_it_so-0.1.0 templates/gosu/app.rb
make_it_so-0.0.9 templates/gosu/app.rb