Skip to content

Instantly share code, notes, and snippets.

@whity-82
Last active December 16, 2015 10:19
Show Gist options
  • Save whity-82/5419759 to your computer and use it in GitHub Desktop.
Save whity-82/5419759 to your computer and use it in GitHub Desktop.
Very basic sample of Chingu
require 'chingu'
class GameWindow < Chingu::Window
def initialize
super 640, 480, false
self.caption = "Chingu Tutorial Game"
end
def update
end
def draw
end
end
window = GameWindow.new
window.show
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment