Last active
December 16, 2015 10:19
-
-
Save whity-82/5419759 to your computer and use it in GitHub Desktop.
Very basic sample of Chingu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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