Skip to content

Instantly share code, notes, and snippets.

@unaunagi
Created July 11, 2013 05:37
Show Gist options
  • Save unaunagi/5972786 to your computer and use it in GitHub Desktop.
Save unaunagi/5972786 to your computer and use it in GitHub Desktop.
豆腐プログラミング DXRuby編
require 'dxruby'
Window.caption = "ウィンドウ"
Window.width = 640
Window.height = 480
Window.bgcolor = [255, 0, 0, 0]
image = Image.new( 50, 50, [255,255,255,255])
Window.loop do
Window.draw(100, 100, image)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment